1999-09-25 04:10:13 +04:00
|
|
|
/* $NetBSD: mii.c,v 1.13 1999/09/25 00:10:13 thorpej Exp $ */
|
1998-08-11 03:55:16 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
|
|
* 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.
|
1997-10-17 21:33:45 +04:00
|
|
|
*
|
|
|
|
* 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:
|
1998-08-11 03:55:16 +04:00
|
|
|
* 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.
|
1997-10-17 21:33:45 +04:00
|
|
|
*
|
1998-08-11 03:55:16 +04:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MII bus layer, glues MII-capable network interface drivers to sharable
|
|
|
|
* PHY drivers. This exports an interface compatible with BSD/OS 3.0's,
|
|
|
|
* plus some NetBSD extensions.
|
1997-10-17 21:33:45 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/device.h>
|
1998-08-11 03:55:16 +04:00
|
|
|
#include <sys/systm.h>
|
1997-10-17 21:33:45 +04:00
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_media.h>
|
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
#include <dev/mii/mii.h>
|
|
|
|
#include <dev/mii/miivar.h>
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
int mii_print __P((void *, const char *));
|
|
|
|
int mii_submatch __P((struct device *, struct cfdata *, void *));
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
/*
|
|
|
|
* Helper function used by network interface drivers, attaches PHYs
|
|
|
|
* to the network interface driver parent.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
mii_phy_probe(parent, mii, capmask)
|
|
|
|
struct device *parent;
|
|
|
|
struct mii_data *mii;
|
|
|
|
int capmask;
|
|
|
|
{
|
|
|
|
struct mii_attach_args ma;
|
|
|
|
struct mii_softc *child;
|
1999-09-25 04:10:13 +04:00
|
|
|
int bmsr, offset = 0;
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
LIST_INIT(&mii->mii_phys);
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
for (ma.mii_phyno = 0; ma.mii_phyno < MII_NPHY; ma.mii_phyno++) {
|
1999-09-25 04:10:13 +04:00
|
|
|
#if 0 /* XXX not yet --thorpej */
|
|
|
|
/*
|
|
|
|
* Make sure we haven't already configured a PHY at this
|
|
|
|
* address. This allows mii_phy_probe() to be called
|
|
|
|
* multiple times.
|
|
|
|
*/
|
|
|
|
for (child = LIST_FIRST(&mii->mii_phys); child != NULL;
|
|
|
|
child = LIST_NEXT(child, mii_list)) {
|
|
|
|
if (child->mii_phy == ma.mii_phyno) {
|
|
|
|
/*
|
|
|
|
* Yes, there is already something
|
|
|
|
* configured at this address.
|
|
|
|
*/
|
|
|
|
continue;
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
/*
|
1999-02-05 05:46:34 +03:00
|
|
|
* Check to see if there is a PHY at this address. Note,
|
|
|
|
* many braindead PHYs report 0/0 in their ID registers,
|
|
|
|
* so we test for media in the BMSR.
|
|
|
|
*/
|
|
|
|
bmsr = (*mii->mii_readreg)(parent, ma.mii_phyno, MII_BMSR);
|
|
|
|
if (bmsr == 0 || bmsr == 0xffff ||
|
|
|
|
(bmsr & BMSR_MEDIAMASK) == 0) {
|
|
|
|
/* Assume no PHY at this address. */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract the IDs. Braindead PHYs will be handled by
|
|
|
|
* the `ukphy' driver, as we have no ID information to
|
|
|
|
* match on.
|
1998-08-11 03:55:16 +04:00
|
|
|
*/
|
|
|
|
ma.mii_id1 = (*mii->mii_readreg)(parent, ma.mii_phyno,
|
|
|
|
MII_PHYIDR1);
|
|
|
|
ma.mii_id2 = (*mii->mii_readreg)(parent, ma.mii_phyno,
|
|
|
|
MII_PHYIDR2);
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
ma.mii_data = mii;
|
|
|
|
ma.mii_capmask = capmask;
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
if ((child = (struct mii_softc *)config_found_sm(parent, &ma,
|
|
|
|
mii_print, mii_submatch)) != NULL) {
|
|
|
|
/*
|
|
|
|
* Link it up in the parent's MII data.
|
|
|
|
*/
|
|
|
|
LIST_INSERT_HEAD(&mii->mii_phys, child, mii_list);
|
1999-09-25 04:10:13 +04:00
|
|
|
child->mii_offset = offset;
|
1998-08-11 03:55:16 +04:00
|
|
|
mii->mii_instance++;
|
|
|
|
}
|
1999-09-25 04:10:13 +04:00
|
|
|
offset++;
|
1998-08-11 03:55:16 +04:00
|
|
|
}
|
1998-02-11 22:02:11 +03:00
|
|
|
}
|
|
|
|
|
1997-11-17 11:52:38 +03:00
|
|
|
int
|
|
|
|
mii_print(aux, pnp)
|
1997-10-17 21:33:45 +04:00
|
|
|
void *aux;
|
|
|
|
const char *pnp;
|
|
|
|
{
|
1998-08-11 03:55:16 +04:00
|
|
|
struct mii_attach_args *ma = aux;
|
1997-11-17 11:52:38 +03:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
if (pnp != NULL)
|
1998-11-05 03:30:44 +03:00
|
|
|
printf("OUI 0x%06x model 0x%04x rev %d at %s",
|
1998-08-11 03:55:16 +04:00
|
|
|
MII_OUI(ma->mii_id1, ma->mii_id2), MII_MODEL(ma->mii_id2),
|
|
|
|
MII_REV(ma->mii_id2), pnp);
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
printf(" phy %d", ma->mii_phyno);
|
|
|
|
return (UNCONF);
|
1997-10-17 21:33:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1998-08-11 03:55:16 +04:00
|
|
|
mii_submatch(parent, cf, aux)
|
1997-10-17 21:33:45 +04:00
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *cf;
|
|
|
|
void *aux;
|
|
|
|
{
|
1998-08-11 03:55:16 +04:00
|
|
|
struct mii_attach_args *ma = aux;
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 04:41:44 +04:00
|
|
|
if (ma->mii_phyno != cf->cf_loc[MIICF_PHY] &&
|
|
|
|
cf->cf_loc[MIICF_PHY] != MIICF_PHY_DEFAULT)
|
1997-11-17 11:52:38 +03:00
|
|
|
return (0);
|
1998-08-11 03:55:16 +04:00
|
|
|
|
1997-10-17 21:33:45 +04:00
|
|
|
return ((*cf->cf_attach->ca_match)(parent, cf, aux));
|
|
|
|
}
|
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
/*
|
|
|
|
* Media changed; notify all PHYs.
|
|
|
|
*/
|
1997-11-17 11:52:38 +03:00
|
|
|
int
|
1998-08-11 03:55:16 +04:00
|
|
|
mii_mediachg(mii)
|
|
|
|
struct mii_data *mii;
|
1997-10-17 21:33:45 +04:00
|
|
|
{
|
1998-08-11 03:55:16 +04:00
|
|
|
struct mii_softc *child;
|
|
|
|
int rv;
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
mii->mii_media_status = 0;
|
|
|
|
mii->mii_media_active = IFM_NONE;
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
for (child = LIST_FIRST(&mii->mii_phys); child != NULL;
|
|
|
|
child = LIST_NEXT(child, mii_list)) {
|
|
|
|
rv = (*child->mii_service)(child, mii, MII_MEDIACHG);
|
|
|
|
if (rv)
|
|
|
|
return (rv);
|
1997-10-17 21:33:45 +04:00
|
|
|
}
|
1998-08-11 03:55:16 +04:00
|
|
|
return (0);
|
1997-10-17 21:33:45 +04:00
|
|
|
}
|
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
/*
|
|
|
|
* Call the PHY tick routines, used during autonegotiation.
|
|
|
|
*/
|
1997-11-17 11:52:38 +03:00
|
|
|
void
|
1998-08-11 03:55:16 +04:00
|
|
|
mii_tick(mii)
|
|
|
|
struct mii_data *mii;
|
1997-10-17 21:33:45 +04:00
|
|
|
{
|
1998-08-11 03:55:16 +04:00
|
|
|
struct mii_softc *child;
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
for (child = LIST_FIRST(&mii->mii_phys); child != NULL;
|
|
|
|
child = LIST_NEXT(child, mii_list))
|
|
|
|
(void) (*child->mii_service)(child, mii, MII_TICK);
|
1997-10-17 21:33:45 +04:00
|
|
|
}
|
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
/*
|
|
|
|
* Get media status from PHYs.
|
|
|
|
*/
|
1997-11-17 11:52:38 +03:00
|
|
|
void
|
1998-08-11 03:55:16 +04:00
|
|
|
mii_pollstat(mii)
|
|
|
|
struct mii_data *mii;
|
1997-10-17 21:33:45 +04:00
|
|
|
{
|
1998-08-11 03:55:16 +04:00
|
|
|
struct mii_softc *child;
|
1997-10-17 21:33:45 +04:00
|
|
|
|
1998-08-11 03:55:16 +04:00
|
|
|
mii->mii_media_status = 0;
|
|
|
|
mii->mii_media_active = IFM_NONE;
|
|
|
|
|
|
|
|
for (child = LIST_FIRST(&mii->mii_phys); child != NULL;
|
|
|
|
child = LIST_NEXT(child, mii_list))
|
|
|
|
(void) (*child->mii_service)(child, mii, MII_POLLSTAT);
|
1997-10-17 21:33:45 +04:00
|
|
|
}
|