2003-04-29 05:49:33 +04:00
|
|
|
/* $NetBSD: nsphy.c,v 1.39 2003/04/29 01:49:34 thorpej Exp $ */
|
1998-08-11 03:58:39 +04:00
|
|
|
|
|
|
|
/*-
|
2000-07-04 07:28:59 +04:00
|
|
|
* Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
|
1998-08-11 03:58:39 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
|
|
|
|
* NASA Ames Research Center.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
|
|
|
|
*/
|
|
|
|
|
1997-10-17 21:33:45 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1997 Manuel Bouyer. 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1997-11-17 12:02:27 +03:00
|
|
|
* This product includes software developed by Manuel Bouyer.
|
1997-10-17 21:33:45 +04:00
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
|
|
|
|
*/
|
|
|
|
|
1998-08-11 03:58:39 +04:00
|
|
|
/*
|
|
|
|
* driver for National Semiconductor's DP83840A ethernet 10/100 PHY
|
|
|
|
* Data Sheet available from www.national.com
|
|
|
|
*/
|
1997-10-17 21:33:45 +04:00
|
|
|
|
2001-11-13 10:38:28 +03:00
|
|
|
#include <sys/cdefs.h>
|
2003-04-29 05:49:33 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: nsphy.c,v 1.39 2003/04/29 01:49:34 thorpej Exp $");
|
2001-11-13 10:38:28 +03:00
|
|
|
|
1997-10-17 21:33:45 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/socket.h>
|
1999-04-23 08:24:32 +04:00
|
|
|
#include <sys/errno.h>
|
1998-08-11 03:58:39 +04:00
|
|
|
|
1997-10-17 21:33:45 +04:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_media.h>
|
|
|
|
|
1998-08-11 03:58:39 +04:00
|
|
|
#include <dev/mii/mii.h>
|
|
|
|
#include <dev/mii/miivar.h>
|
|
|
|
#include <dev/mii/miidevs.h>
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:58:39 +04:00
|
|
|
#include <dev/mii/nsphyreg.h>
|
1997-10-17 21:33:45 +04:00
|
|
|
|
2001-08-25 22:04:01 +04:00
|
|
|
int nsphymatch(struct device *, struct cfdata *, void *);
|
|
|
|
void nsphyattach(struct device *, struct device *, void *);
|
1997-10-17 21:33:45 +04:00
|
|
|
|
2002-10-01 01:57:46 +04:00
|
|
|
CFATTACH_DECL(nsphy, sizeof(struct mii_softc),
|
2002-10-02 20:33:28 +04:00
|
|
|
nsphymatch, nsphyattach, mii_phy_detach, mii_phy_activate);
|
1997-10-17 21:33:45 +04:00
|
|
|
|
2001-08-25 22:04:01 +04:00
|
|
|
int nsphy_service(struct mii_softc *, struct mii_data *, int);
|
|
|
|
void nsphy_status(struct mii_softc *);
|
1998-08-11 03:58:39 +04:00
|
|
|
|
2000-07-04 07:28:59 +04:00
|
|
|
const struct mii_phy_funcs nsphy_funcs = {
|
|
|
|
nsphy_service, nsphy_status, mii_phy_reset,
|
|
|
|
};
|
|
|
|
|
2001-06-03 01:39:38 +04:00
|
|
|
const struct mii_phydesc nsphys[] = {
|
|
|
|
{ MII_OUI_xxNATSEMI, MII_MODEL_xxNATSEMI_DP83840,
|
|
|
|
MII_STR_xxNATSEMI_DP83840 },
|
|
|
|
|
|
|
|
{ 0, 0,
|
|
|
|
NULL },
|
|
|
|
};
|
|
|
|
|
1997-10-17 21:33:45 +04:00
|
|
|
int
|
2001-08-25 22:04:01 +04:00
|
|
|
nsphymatch(struct device *parent, struct cfdata *match, void *aux)
|
1997-10-17 21:33:45 +04:00
|
|
|
{
|
1998-08-11 03:58:39 +04:00
|
|
|
struct mii_attach_args *ma = aux;
|
1997-10-17 21:33:45 +04:00
|
|
|
|
2001-06-03 01:39:38 +04:00
|
|
|
if (mii_phy_match(ma, nsphys) != NULL)
|
1998-11-05 02:44:09 +03:00
|
|
|
return (10);
|
1998-08-11 03:58:39 +04:00
|
|
|
|
|
|
|
return (0);
|
1997-10-17 21:33:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-08-25 22:04:01 +04:00
|
|
|
nsphyattach(struct device *parent, struct device *self, void *aux)
|
1997-10-17 21:33:45 +04:00
|
|
|
{
|
1998-11-05 03:19:32 +03:00
|
|
|
struct mii_softc *sc = (struct mii_softc *)self;
|
1998-08-11 03:58:39 +04:00
|
|
|
struct mii_attach_args *ma = aux;
|
|
|
|
struct mii_data *mii = ma->mii_data;
|
2001-06-03 01:39:38 +04:00
|
|
|
const struct mii_phydesc *mpd;
|
1998-08-11 03:58:39 +04:00
|
|
|
|
2001-06-03 01:39:38 +04:00
|
|
|
mpd = mii_phy_match(ma, nsphys);
|
2003-04-29 05:49:33 +04:00
|
|
|
aprint_naive(": Media interface\n");
|
|
|
|
aprint_normal(": %s, rev. %d\n", mpd->mpd_name, MII_REV(ma->mii_id2));
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-11-05 03:19:32 +03:00
|
|
|
sc->mii_inst = mii->mii_instance;
|
|
|
|
sc->mii_phy = ma->mii_phyno;
|
2000-07-04 07:28:59 +04:00
|
|
|
sc->mii_funcs = &nsphy_funcs;
|
1998-11-05 03:19:32 +03:00
|
|
|
sc->mii_pdata = mii;
|
2002-03-25 23:51:24 +03:00
|
|
|
sc->mii_flags = ma->mii_flags;
|
2001-05-31 20:02:29 +04:00
|
|
|
sc->mii_anegticks = 5;
|
1998-11-05 02:28:15 +03:00
|
|
|
|
2000-07-04 07:28:59 +04:00
|
|
|
PHY_RESET(sc);
|
1998-08-11 03:58:39 +04:00
|
|
|
|
1998-11-05 03:19:32 +03:00
|
|
|
sc->mii_capabilities =
|
|
|
|
PHY_READ(sc, MII_BMSR) & ma->mii_capmask;
|
2003-04-29 05:49:33 +04:00
|
|
|
aprint_normal("%s: ", sc->mii_dev.dv_xname);
|
1998-11-05 03:19:32 +03:00
|
|
|
if ((sc->mii_capabilities & BMSR_MEDIAMASK) == 0)
|
2003-04-29 05:49:33 +04:00
|
|
|
aprint_error("no media present");
|
1998-08-11 03:58:39 +04:00
|
|
|
else
|
2000-02-02 11:05:26 +03:00
|
|
|
mii_phy_add_media(sc);
|
2003-04-29 05:49:33 +04:00
|
|
|
aprint_normal("\n");
|
1998-08-11 03:58:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-08-25 22:04:01 +04:00
|
|
|
nsphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd)
|
1998-08-11 03:58:39 +04:00
|
|
|
{
|
1998-11-03 01:31:36 +03:00
|
|
|
struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
|
1998-08-11 03:58:39 +04:00
|
|
|
int reg;
|
1997-10-17 21:33:45 +04:00
|
|
|
|
2000-01-27 19:44:30 +03:00
|
|
|
if ((sc->mii_dev.dv_flags & DVF_ACTIVE) == 0)
|
|
|
|
return (ENXIO);
|
|
|
|
|
1998-08-11 03:58:39 +04:00
|
|
|
switch (cmd) {
|
|
|
|
case MII_POLLSTAT:
|
|
|
|
/*
|
|
|
|
* If we're not polling our PHY instance, just return.
|
|
|
|
*/
|
1998-11-05 03:19:32 +03:00
|
|
|
if (IFM_INST(ife->ifm_media) != sc->mii_inst)
|
1998-08-11 03:58:39 +04:00
|
|
|
return (0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MII_MEDIACHG:
|
|
|
|
/*
|
|
|
|
* If the media indicates a different PHY instance,
|
|
|
|
* isolate ourselves.
|
|
|
|
*/
|
1998-11-05 03:19:32 +03:00
|
|
|
if (IFM_INST(ife->ifm_media) != sc->mii_inst) {
|
|
|
|
reg = PHY_READ(sc, MII_BMCR);
|
|
|
|
PHY_WRITE(sc, MII_BMCR, reg | BMCR_ISO);
|
1998-08-11 03:58:39 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the interface is not up, don't do anything.
|
|
|
|
*/
|
|
|
|
if ((mii->mii_ifp->if_flags & IFF_UP) == 0)
|
|
|
|
break;
|
|
|
|
|
1998-11-05 03:19:32 +03:00
|
|
|
reg = PHY_READ(sc, MII_NSPHY_PCR);
|
1998-08-14 04:23:26 +04:00
|
|
|
|
1998-08-11 03:58:39 +04:00
|
|
|
/*
|
|
|
|
* Set up the PCR to use LED4 to indicate full-duplex
|
|
|
|
* in both 10baseT and 100baseTX modes.
|
|
|
|
*/
|
1998-08-14 04:23:26 +04:00
|
|
|
reg |= PCR_LED4MODE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure Carrier Intgrity Monitor function is
|
|
|
|
* disabled (normal for Node operation, but sometimes
|
|
|
|
* it's not set?!)
|
|
|
|
*/
|
|
|
|
reg |= PCR_CIMDIS;
|
|
|
|
|
|
|
|
/*
|
1999-07-15 03:57:36 +04:00
|
|
|
* Make sure "force link good" is set to normal mode.
|
|
|
|
* It's only intended for debugging.
|
1998-08-14 04:23:26 +04:00
|
|
|
*/
|
1999-07-15 03:57:36 +04:00
|
|
|
reg |= PCR_FLINK100;
|
1998-08-14 04:23:26 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mystery bits which are supposedly `reserved',
|
|
|
|
* but we seem to need to set them when the PHY
|
2000-07-28 02:14:48 +04:00
|
|
|
* is connected to some interfaces:
|
|
|
|
*
|
|
|
|
* 0x0400 is needed for fxp
|
|
|
|
* (Intel EtherExpress Pro 10+/100B, 82557 chip)
|
|
|
|
* (nsphy with a DP83840 chip)
|
|
|
|
* 0x0100 may be needed for some other card
|
1998-08-14 04:23:26 +04:00
|
|
|
*/
|
|
|
|
reg |= 0x0100 | 0x0400;
|
|
|
|
|
1998-11-05 03:19:32 +03:00
|
|
|
PHY_WRITE(sc, MII_NSPHY_PCR, reg);
|
1998-08-11 03:58:39 +04:00
|
|
|
|
2000-02-03 02:34:56 +03:00
|
|
|
mii_phy_setmedia(sc);
|
1998-08-11 03:58:39 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MII_TICK:
|
|
|
|
/*
|
|
|
|
* If we're not currently selected, just return.
|
|
|
|
*/
|
1998-11-05 03:19:32 +03:00
|
|
|
if (IFM_INST(ife->ifm_media) != sc->mii_inst)
|
1998-08-11 03:58:39 +04:00
|
|
|
return (0);
|
|
|
|
|
2000-03-06 23:56:56 +03:00
|
|
|
if (mii_phy_tick(sc) == EJUSTRETURN)
|
1999-04-23 08:24:32 +04:00
|
|
|
return (0);
|
1998-08-11 03:58:39 +04:00
|
|
|
break;
|
1999-11-12 21:12:59 +03:00
|
|
|
|
|
|
|
case MII_DOWN:
|
|
|
|
mii_phy_down(sc);
|
|
|
|
return (0);
|
1998-08-11 03:58:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update the media status. */
|
2000-02-02 20:50:43 +03:00
|
|
|
mii_phy_status(sc);
|
1998-08-11 03:58:39 +04:00
|
|
|
|
|
|
|
/* Callback if something changed. */
|
2000-03-06 23:56:56 +03:00
|
|
|
mii_phy_update(sc, cmd);
|
1998-08-11 03:58:39 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-08-25 22:04:01 +04:00
|
|
|
nsphy_status(struct mii_softc *sc)
|
1998-08-11 03:58:39 +04:00
|
|
|
{
|
1998-11-05 03:19:32 +03:00
|
|
|
struct mii_data *mii = sc->mii_pdata;
|
1999-11-04 01:30:32 +03:00
|
|
|
struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
|
1998-08-13 02:41:21 +04:00
|
|
|
int bmsr, bmcr, par, anlpar;
|
1998-08-11 03:58:39 +04:00
|
|
|
|
|
|
|
mii->mii_media_status = IFM_AVALID;
|
|
|
|
mii->mii_media_active = IFM_ETHER;
|
|
|
|
|
1998-11-05 03:19:32 +03:00
|
|
|
bmsr = PHY_READ(sc, MII_BMSR) |
|
|
|
|
PHY_READ(sc, MII_BMSR);
|
1998-08-11 03:58:39 +04:00
|
|
|
if (bmsr & BMSR_LINK)
|
|
|
|
mii->mii_media_status |= IFM_ACTIVE;
|
|
|
|
|
1998-11-05 03:19:32 +03:00
|
|
|
bmcr = PHY_READ(sc, MII_BMCR);
|
1998-08-11 03:58:39 +04:00
|
|
|
if (bmcr & BMCR_ISO) {
|
|
|
|
mii->mii_media_active |= IFM_NONE;
|
|
|
|
mii->mii_media_status = 0;
|
1997-10-17 21:33:45 +04:00
|
|
|
return;
|
|
|
|
}
|
1998-08-11 03:58:39 +04:00
|
|
|
|
|
|
|
if (bmcr & BMCR_LOOP)
|
|
|
|
mii->mii_media_active |= IFM_LOOP;
|
|
|
|
|
|
|
|
if (bmcr & BMCR_AUTOEN) {
|
|
|
|
/*
|
|
|
|
* The PAR status bits are only valid of autonegotiation
|
|
|
|
* has completed (or it's disabled).
|
|
|
|
*/
|
|
|
|
if ((bmsr & BMSR_ACOMP) == 0) {
|
1998-08-13 00:56:34 +04:00
|
|
|
/* Erg, still trying, I guess... */
|
|
|
|
mii->mii_media_active |= IFM_NONE;
|
1998-08-11 03:58:39 +04:00
|
|
|
return;
|
|
|
|
}
|
1998-08-13 02:41:21 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Argh. The PAR doesn't seem to indicate duplex mode
|
|
|
|
* properly! Determine media based on link partner's
|
|
|
|
* advertised capabilities.
|
|
|
|
*/
|
1998-11-05 03:19:32 +03:00
|
|
|
if (PHY_READ(sc, MII_ANER) & ANER_LPAN) {
|
|
|
|
anlpar = PHY_READ(sc, MII_ANAR) &
|
|
|
|
PHY_READ(sc, MII_ANLPAR);
|
1998-08-13 02:41:21 +04:00
|
|
|
if (anlpar & ANLPAR_T4)
|
|
|
|
mii->mii_media_active |= IFM_100_T4;
|
|
|
|
else if (anlpar & ANLPAR_TX_FD)
|
|
|
|
mii->mii_media_active |= IFM_100_TX|IFM_FDX;
|
|
|
|
else if (anlpar & ANLPAR_TX)
|
|
|
|
mii->mii_media_active |= IFM_100_TX;
|
|
|
|
else if (anlpar & ANLPAR_10_FD)
|
|
|
|
mii->mii_media_active |= IFM_10_T|IFM_FDX;
|
|
|
|
else if (anlpar & ANLPAR_10)
|
|
|
|
mii->mii_media_active |= IFM_10_T;
|
|
|
|
else
|
|
|
|
mii->mii_media_active |= IFM_NONE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Link partner is not capable of autonegotiation.
|
|
|
|
* We will never be in full-duplex mode if this is
|
|
|
|
* the case, so reading the PAR is OK.
|
|
|
|
*/
|
1998-11-05 03:19:32 +03:00
|
|
|
par = PHY_READ(sc, MII_NSPHY_PAR);
|
1998-08-11 03:58:39 +04:00
|
|
|
if (par & PAR_10)
|
|
|
|
mii->mii_media_active |= IFM_10_T;
|
|
|
|
else
|
|
|
|
mii->mii_media_active |= IFM_100_TX;
|
1998-08-13 02:41:21 +04:00
|
|
|
#if 0
|
1998-08-11 03:58:39 +04:00
|
|
|
if (par & PAR_FDX)
|
|
|
|
mii->mii_media_active |= IFM_FDX;
|
1998-08-13 02:41:21 +04:00
|
|
|
#endif
|
1998-11-05 07:08:01 +03:00
|
|
|
} else
|
1999-11-04 01:30:32 +03:00
|
|
|
mii->mii_media_active = ife->ifm_media;
|
1997-10-17 21:33:45 +04:00
|
|
|
}
|