/*-
* Copyright (c) 1998, 2000, 2020 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.
*
* 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 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 shareable
* PHY drivers.
*/
/*
* Helper function used by network interface drivers, attaches PHYs
* to the network interface driver parent.
*/
void
mii_attach(device_t parent, struct mii_data *mii, int capmask,
int phyloc, int offloc, int flags)
{
struct mii_attach_args ma;
struct mii_softc *child;
int offset = 0;
uint16_t bmsr;
int phymin, phymax;
int locs[MIICF_NLOCS];
int rv;
KASSERT(mii->mii_media.ifm_lock != NULL);
if (phyloc != MII_PHY_ANY && offloc != MII_OFFSET_ANY)
panic("mii_attach: phyloc and offloc specified");
/*
* Probing temporarily unlocks the MII; wait until anyone
* else who might be doing this to finish.
*/
mii->mii_probe_waiters++;
for (;;) {
if (mii->mii_flags & MIIF_EXITING) {
mii->mii_probe_waiters--;
cv_signal(&mii->mii_probe_cv);
mii_unlock(mii);
return;
}
if ((mii->mii_flags & MIIF_PROBING) == 0)
break;
cv_wait(&mii->mii_probe_cv, mii->mii_media.ifm_lock);
}
mii->mii_probe_waiters--;
/* ...and old others off. */
mii->mii_flags |= MIIF_PROBING;
for (ma.mii_phyno = phymin; ma.mii_phyno <= phymax; ma.mii_phyno++) {
/*
* Make sure we haven't already configured a PHY at this
* address. This allows mii_attach() to be called
* multiple times.
*/
LIST_FOREACH(child, &mii->mii_phys, mii_list) {
if (child->mii_phy == ma.mii_phyno) {
/*
* Yes, there is already something
* configured at this address.
*/
offset++;
continue;
}
}
/*
* 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 = 0;
rv = (*mii->mii_readreg)(parent, ma.mii_phyno, MII_BMSR,
&bmsr);
if ((rv != 0) || bmsr == 0 || bmsr == 0xffff ||
(bmsr & (BMSR_EXTSTAT | BMSR_MEDIAMASK)) == 0) {
/* Assume no PHY at this address. */
continue;
}
/*
* There is a PHY at this address. If we were given an
* `offset' locator, skip this PHY if it doesn't match.
*/
if (offloc != MII_OFFSET_ANY && offloc != offset) {
offset++;
continue;
}
/*
* Extract the IDs. Braindead PHYs will be handled by
* the `ukphy' driver, as we have no ID information to
* match on.
*/
ma.mii_id1 = ma.mii_id2 = 0;
rv = (*mii->mii_readreg)(parent, ma.mii_phyno,
MII_PHYIDR1, &ma.mii_id1);
rv |= (*mii->mii_readreg)(parent, ma.mii_phyno,
MII_PHYIDR2, &ma.mii_id2);
if (rv != 0)
continue;
/*
* XXX This is probably not the best hueristic. Consider
* XXX adding an argument to mii_detach().
*/
if (phyloc == MII_PHY_ANY && MII_PHY_ANY == MII_OFFSET_ANY)
exiting = true;
if (exiting) {
mii->mii_flags |= MIIF_EXITING;
cv_broadcast(&mii->mii_probe_cv);
}
/* Wait for everyone else to get out. */
mii->mii_probe_waiters++;
for (;;) {
/*
* If we've been waiting to do a less-than-exit, and
* *someone else* initiated an exit, then get out.
*/
if (!exiting && (mii->mii_flags & MIIF_EXITING) != 0) {
mii->mii_probe_waiters--;
cv_signal(&mii->mii_probe_cv);
mii_unlock(mii);
return;
}
if ((mii->mii_flags & MIIF_PROBING) == 0 &&
(!exiting || (exiting && mii->mii_probe_waiters == 1)))
break;
cv_wait(&mii->mii_probe_cv, mii->mii_media.ifm_lock);
}
mii->mii_probe_waiters--;