1999-08-21 17:40:53 +00:00
|
|
|
/* $NetBSD: mii.c,v 1.12 1999/08/03 19:41:49 drochner Exp $ */
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-08-24 17:55:58 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1999-08-21 17:40:53 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/module.h>
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
#include <sys/bus.h>
|
1999-08-21 17:40:53 +00:00
|
|
|
|
|
|
|
#include <net/if.h>
|
2013-10-26 17:58:36 +00:00
|
|
|
#include <net/if_var.h>
|
1999-08-21 17:40:53 +00:00
|
|
|
#include <net/if_media.h>
|
|
|
|
|
|
|
|
#include <dev/mii/mii.h>
|
|
|
|
#include <dev/mii/miivar.h>
|
|
|
|
|
2000-04-29 13:38:26 +00:00
|
|
|
MODULE_VERSION(miibus, 1);
|
|
|
|
|
1999-08-21 17:40:53 +00:00
|
|
|
#include "miibus_if.h"
|
|
|
|
|
2011-11-18 22:58:13 +00:00
|
|
|
static device_attach_t miibus_attach;
|
2011-11-18 22:39:46 +00:00
|
|
|
static bus_child_location_str_t miibus_child_location_str;
|
|
|
|
static bus_child_pnpinfo_str_t miibus_child_pnpinfo_str;
|
2011-11-18 22:58:13 +00:00
|
|
|
static device_detach_t miibus_detach;
|
2011-11-18 22:39:46 +00:00
|
|
|
static bus_hinted_child_t miibus_hinted_child;
|
|
|
|
static bus_print_child_t miibus_print_child;
|
2011-11-18 22:58:13 +00:00
|
|
|
static device_probe_t miibus_probe;
|
2011-11-18 22:39:46 +00:00
|
|
|
static bus_read_ivar_t miibus_read_ivar;
|
|
|
|
static miibus_readreg_t miibus_readreg;
|
|
|
|
static miibus_statchg_t miibus_statchg;
|
|
|
|
static miibus_writereg_t miibus_writereg;
|
|
|
|
static miibus_linkchg_t miibus_linkchg;
|
|
|
|
static miibus_mediainit_t miibus_mediainit;
|
|
|
|
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
static unsigned char mii_bitreverse(unsigned char x);
|
1999-08-21 17:40:53 +00:00
|
|
|
|
|
|
|
static device_method_t miibus_methods[] = {
|
|
|
|
/* device interface */
|
|
|
|
DEVMETHOD(device_probe, miibus_probe),
|
|
|
|
DEVMETHOD(device_attach, miibus_attach),
|
|
|
|
DEVMETHOD(device_detach, miibus_detach),
|
|
|
|
DEVMETHOD(device_shutdown, bus_generic_shutdown),
|
|
|
|
|
|
|
|
/* bus interface */
|
2007-01-20 00:55:03 +00:00
|
|
|
DEVMETHOD(bus_print_child, miibus_print_child),
|
2010-10-14 22:01:40 +00:00
|
|
|
DEVMETHOD(bus_read_ivar, miibus_read_ivar),
|
2005-02-16 01:08:43 +00:00
|
|
|
DEVMETHOD(bus_child_pnpinfo_str, miibus_child_pnpinfo_str),
|
|
|
|
DEVMETHOD(bus_child_location_str, miibus_child_location_str),
|
2011-11-18 22:39:46 +00:00
|
|
|
DEVMETHOD(bus_hinted_child, miibus_hinted_child),
|
1999-08-21 17:40:53 +00:00
|
|
|
|
|
|
|
/* MII interface */
|
|
|
|
DEVMETHOD(miibus_readreg, miibus_readreg),
|
|
|
|
DEVMETHOD(miibus_writereg, miibus_writereg),
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
DEVMETHOD(miibus_statchg, miibus_statchg),
|
|
|
|
DEVMETHOD(miibus_linkchg, miibus_linkchg),
|
|
|
|
DEVMETHOD(miibus_mediainit, miibus_mediainit),
|
1999-08-21 17:40:53 +00:00
|
|
|
|
2011-11-22 21:28:20 +00:00
|
|
|
DEVMETHOD_END
|
1999-08-21 17:40:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
devclass_t miibus_devclass;
|
|
|
|
|
|
|
|
driver_t miibus_driver = {
|
|
|
|
"miibus",
|
|
|
|
miibus_methods,
|
|
|
|
sizeof(struct mii_data)
|
|
|
|
};
|
|
|
|
|
2007-05-01 18:21:24 +00:00
|
|
|
struct miibus_ivars {
|
2014-06-02 17:54:39 +00:00
|
|
|
if_t ifp;
|
2007-05-01 18:21:24 +00:00
|
|
|
ifm_change_cb_t ifmedia_upd;
|
|
|
|
ifm_stat_cb_t ifmedia_sts;
|
2011-11-18 22:39:46 +00:00
|
|
|
u_int mii_flags;
|
|
|
|
u_int mii_offset;
|
2007-05-01 18:21:24 +00:00
|
|
|
};
|
|
|
|
|
2011-11-18 22:58:13 +00:00
|
|
|
static int
|
2005-02-15 06:02:34 +00:00
|
|
|
miibus_probe(device_t dev)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
device_set_desc(dev, "MII bus");
|
|
|
|
|
2010-10-14 22:01:40 +00:00
|
|
|
return (BUS_PROBE_SPECIFIC);
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
|
|
|
|
2011-11-18 22:58:13 +00:00
|
|
|
static int
|
2005-02-15 06:02:34 +00:00
|
|
|
miibus_attach(device_t dev)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
2007-05-01 18:21:24 +00:00
|
|
|
struct miibus_ivars *ivars;
|
2010-10-14 22:01:40 +00:00
|
|
|
struct mii_attach_args *ma;
|
1999-08-21 17:40:53 +00:00
|
|
|
struct mii_data *mii;
|
2010-10-14 22:01:40 +00:00
|
|
|
device_t *children;
|
|
|
|
int i, nchildren;
|
1999-08-21 17:40:53 +00:00
|
|
|
|
|
|
|
mii = device_get_softc(dev);
|
2010-10-14 22:01:40 +00:00
|
|
|
if (device_get_children(dev, &children, &nchildren) == 0) {
|
|
|
|
for (i = 0; i < nchildren; i++) {
|
|
|
|
ma = device_get_ivars(children[i]);
|
|
|
|
ma->mii_data = mii;
|
|
|
|
}
|
|
|
|
free(children, M_TEMP);
|
|
|
|
}
|
|
|
|
if (nchildren == 0) {
|
2010-11-22 20:57:44 +00:00
|
|
|
device_printf(dev, "cannot get children\n");
|
2010-10-14 22:01:40 +00:00
|
|
|
return (ENXIO);
|
|
|
|
}
|
2007-05-01 18:21:24 +00:00
|
|
|
ivars = device_get_ivars(dev);
|
|
|
|
ifmedia_init(&mii->mii_media, IFM_IMASK, ivars->ifmedia_upd,
|
|
|
|
ivars->ifmedia_sts);
|
2010-10-14 22:01:40 +00:00
|
|
|
mii->mii_ifp = ivars->ifp;
|
2014-06-02 17:54:39 +00:00
|
|
|
if_setcapabilitiesbit(mii->mii_ifp, IFCAP_LINKSTATE, 0);
|
|
|
|
if_setcapenablebit(mii->mii_ifp, IFCAP_LINKSTATE, 0);
|
2010-10-14 22:01:40 +00:00
|
|
|
LIST_INIT(&mii->mii_phys);
|
1999-08-21 17:40:53 +00:00
|
|
|
|
2010-10-14 22:01:40 +00:00
|
|
|
return (bus_generic_attach(dev));
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
|
|
|
|
2011-11-18 22:58:13 +00:00
|
|
|
static int
|
2005-02-15 06:02:34 +00:00
|
|
|
miibus_detach(device_t dev)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
|
|
|
struct mii_data *mii;
|
|
|
|
|
|
|
|
bus_generic_detach(dev);
|
|
|
|
mii = device_get_softc(dev);
|
|
|
|
ifmedia_removeall(&mii->mii_media);
|
|
|
|
mii->mii_ifp = NULL;
|
|
|
|
|
2010-10-02 17:20:30 +00:00
|
|
|
return (0);
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
|
|
|
|
2007-01-20 00:55:03 +00:00
|
|
|
static int
|
|
|
|
miibus_print_child(device_t dev, device_t child)
|
|
|
|
{
|
|
|
|
struct mii_attach_args *ma;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
ma = device_get_ivars(child);
|
|
|
|
retval = bus_print_child_header(dev, child);
|
|
|
|
retval += printf(" PHY %d", ma->mii_phyno);
|
|
|
|
retval += bus_print_child_footer(dev, child);
|
|
|
|
|
|
|
|
return (retval);
|
|
|
|
}
|
|
|
|
|
2005-02-16 01:08:43 +00:00
|
|
|
static int
|
2010-10-14 22:01:40 +00:00
|
|
|
miibus_read_ivar(device_t dev, device_t child __unused, int which,
|
|
|
|
uintptr_t *result)
|
|
|
|
{
|
|
|
|
struct miibus_ivars *ivars;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NB: this uses the instance variables of the miibus rather than
|
|
|
|
* its PHY children.
|
|
|
|
*/
|
|
|
|
ivars = device_get_ivars(dev);
|
|
|
|
switch (which) {
|
|
|
|
case MIIBUS_IVAR_FLAGS:
|
|
|
|
*result = ivars->mii_flags;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (ENOENT);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2011-11-18 22:39:46 +00:00
|
|
|
miibus_child_pnpinfo_str(device_t dev __unused, device_t child, char *buf,
|
2005-02-16 01:08:43 +00:00
|
|
|
size_t buflen)
|
|
|
|
{
|
2010-10-02 17:20:30 +00:00
|
|
|
struct mii_attach_args *ma;
|
|
|
|
|
|
|
|
ma = device_get_ivars(child);
|
2005-02-16 05:56:39 +00:00
|
|
|
snprintf(buf, buflen, "oui=0x%x model=0x%x rev=0x%x",
|
2010-10-02 17:20:30 +00:00
|
|
|
MII_OUI(ma->mii_id1, ma->mii_id2),
|
|
|
|
MII_MODEL(ma->mii_id2), MII_REV(ma->mii_id2));
|
2005-02-16 01:08:43 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2011-11-18 22:39:46 +00:00
|
|
|
miibus_child_location_str(device_t dev __unused, device_t child, char *buf,
|
2005-02-16 01:08:43 +00:00
|
|
|
size_t buflen)
|
|
|
|
{
|
2010-10-02 17:20:30 +00:00
|
|
|
struct mii_attach_args *ma;
|
|
|
|
|
|
|
|
ma = device_get_ivars(child);
|
|
|
|
snprintf(buf, buflen, "phyno=%d", ma->mii_phyno);
|
2005-02-16 01:08:43 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2011-11-18 22:39:46 +00:00
|
|
|
static void
|
|
|
|
miibus_hinted_child(device_t dev, const char *name, int unit)
|
|
|
|
{
|
|
|
|
struct miibus_ivars *ivars;
|
|
|
|
struct mii_attach_args *args, *ma;
|
|
|
|
device_t *children, phy;
|
|
|
|
int i, nchildren;
|
|
|
|
u_int val;
|
|
|
|
|
|
|
|
if (resource_int_value(name, unit, "phyno", &val) != 0)
|
|
|
|
return;
|
|
|
|
if (device_get_children(dev, &children, &nchildren) != 0)
|
|
|
|
return;
|
|
|
|
ma = NULL;
|
|
|
|
for (i = 0; i < nchildren; i++) {
|
|
|
|
args = device_get_ivars(children[i]);
|
|
|
|
if (args->mii_phyno == val) {
|
|
|
|
ma = args;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(children, M_TEMP);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't add a PHY that was automatically identified by having media
|
|
|
|
* in its BMSR twice, only allow to alter its attach arguments.
|
|
|
|
*/
|
|
|
|
if (ma == NULL) {
|
|
|
|
ma = malloc(sizeof(struct mii_attach_args), M_DEVBUF,
|
|
|
|
M_NOWAIT);
|
|
|
|
if (ma == NULL)
|
|
|
|
return;
|
|
|
|
phy = device_add_child(dev, name, unit);
|
|
|
|
if (phy == NULL) {
|
|
|
|
free(ma, M_DEVBUF);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ivars = device_get_ivars(dev);
|
|
|
|
ma->mii_phyno = val;
|
|
|
|
ma->mii_offset = ivars->mii_offset++;
|
|
|
|
ma->mii_id1 = 0;
|
|
|
|
ma->mii_id2 = 0;
|
|
|
|
ma->mii_capmask = BMSR_DEFCAPMASK;
|
|
|
|
device_set_ivars(phy, ma);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resource_int_value(name, unit, "id1", &val) == 0)
|
|
|
|
ma->mii_id1 = val;
|
|
|
|
if (resource_int_value(name, unit, "id2", &val) == 0)
|
|
|
|
ma->mii_id2 = val;
|
|
|
|
if (resource_int_value(name, unit, "capmask", &val) == 0)
|
|
|
|
ma->mii_capmask = val;
|
|
|
|
}
|
|
|
|
|
2002-10-14 22:31:52 +00:00
|
|
|
static int
|
2005-02-15 06:02:34 +00:00
|
|
|
miibus_readreg(device_t dev, int phy, int reg)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
|
|
|
device_t parent;
|
|
|
|
|
|
|
|
parent = device_get_parent(dev);
|
2010-10-02 17:20:30 +00:00
|
|
|
return (MIIBUS_READREG(parent, phy, reg));
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
|
|
|
|
2002-10-14 22:31:52 +00:00
|
|
|
static int
|
2005-02-15 06:02:34 +00:00
|
|
|
miibus_writereg(device_t dev, int phy, int reg, int data)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
|
|
|
device_t parent;
|
|
|
|
|
|
|
|
parent = device_get_parent(dev);
|
2010-10-02 17:20:30 +00:00
|
|
|
return (MIIBUS_WRITEREG(parent, phy, reg, data));
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
|
|
|
|
2002-10-14 22:31:52 +00:00
|
|
|
static void
|
2005-02-15 06:02:34 +00:00
|
|
|
miibus_statchg(device_t dev)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
|
|
|
device_t parent;
|
2006-02-14 12:10:03 +00:00
|
|
|
struct mii_data *mii;
|
1999-08-21 17:40:53 +00:00
|
|
|
|
|
|
|
parent = device_get_parent(dev);
|
|
|
|
MIIBUS_STATCHG(parent);
|
2006-02-14 12:10:03 +00:00
|
|
|
|
|
|
|
mii = device_get_softc(dev);
|
2014-06-02 17:54:39 +00:00
|
|
|
if_setbaudrate(mii->mii_ifp, ifmedia_baudrate(mii->mii_media_active));
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
|
|
|
|
2001-09-29 18:40:06 +00:00
|
|
|
static void
|
2005-02-15 06:02:34 +00:00
|
|
|
miibus_linkchg(device_t dev)
|
2001-09-29 18:40:06 +00:00
|
|
|
{
|
2004-12-08 05:45:59 +00:00
|
|
|
struct mii_data *mii;
|
|
|
|
device_t parent;
|
|
|
|
int link_state;
|
2001-09-29 18:40:06 +00:00
|
|
|
|
|
|
|
parent = device_get_parent(dev);
|
|
|
|
MIIBUS_LINKCHG(parent);
|
|
|
|
|
|
|
|
mii = device_get_softc(dev);
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
|
2001-09-29 18:40:06 +00:00
|
|
|
if (mii->mii_media_status & IFM_AVALID) {
|
2004-12-08 05:45:59 +00:00
|
|
|
if (mii->mii_media_status & IFM_ACTIVE)
|
2004-05-03 13:48:35 +00:00
|
|
|
link_state = LINK_STATE_UP;
|
2004-12-08 05:45:59 +00:00
|
|
|
else
|
2004-05-03 13:48:35 +00:00
|
|
|
link_state = LINK_STATE_DOWN;
|
2004-12-08 05:45:59 +00:00
|
|
|
} else
|
2004-05-03 13:48:35 +00:00
|
|
|
link_state = LINK_STATE_UNKNOWN;
|
2014-08-31 12:48:13 +00:00
|
|
|
if_link_state_change(mii->mii_ifp, link_state);
|
2001-09-29 18:40:06 +00:00
|
|
|
}
|
|
|
|
|
2002-10-14 22:31:52 +00:00
|
|
|
static void
|
2005-02-15 06:02:34 +00:00
|
|
|
miibus_mediainit(device_t dev)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
|
|
|
struct mii_data *mii;
|
|
|
|
struct ifmedia_entry *m;
|
|
|
|
int media = 0;
|
|
|
|
|
1999-08-29 15:42:04 +00:00
|
|
|
/* Poke the parent in case it has any media of its own to add. */
|
|
|
|
MIIBUS_MEDIAINIT(device_get_parent(dev));
|
|
|
|
|
1999-08-21 17:40:53 +00:00
|
|
|
mii = device_get_softc(dev);
|
2001-02-04 16:08:18 +00:00
|
|
|
LIST_FOREACH(m, &mii->mii_media.ifm_list, ifm_list) {
|
1999-08-21 17:40:53 +00:00
|
|
|
media = m->ifm_media;
|
2010-10-02 17:20:30 +00:00
|
|
|
if (media == (IFM_ETHER | IFM_AUTO))
|
1999-08-21 17:40:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ifmedia_set(&mii->mii_media, media);
|
|
|
|
}
|
|
|
|
|
2010-10-14 22:01:40 +00:00
|
|
|
/*
|
|
|
|
* Helper function used by network interface drivers, attaches the miibus and
|
|
|
|
* the PHYs to the network interface driver parent.
|
|
|
|
*/
|
2002-10-14 22:31:52 +00:00
|
|
|
int
|
2014-08-31 12:48:13 +00:00
|
|
|
mii_attach(device_t dev, device_t *miibus, if_t ifp,
|
2010-10-14 22:01:40 +00:00
|
|
|
ifm_change_cb_t ifmedia_upd, ifm_stat_cb_t ifmedia_sts, int capmask,
|
|
|
|
int phyloc, int offloc, int flags)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
2010-10-14 22:01:40 +00:00
|
|
|
struct miibus_ivars *ivars;
|
2011-11-18 22:39:46 +00:00
|
|
|
struct mii_attach_args *args, ma;
|
2010-10-14 22:01:40 +00:00
|
|
|
device_t *children, phy;
|
2011-11-18 22:39:46 +00:00
|
|
|
int bmsr, first, i, nchildren, phymax, phymin, rv;
|
|
|
|
uint32_t phymask;
|
2010-10-14 22:01:40 +00:00
|
|
|
|
|
|
|
if (phyloc != MII_PHY_ANY && offloc != MII_OFFSET_ANY) {
|
2010-11-22 20:57:44 +00:00
|
|
|
printf("%s: phyloc and offloc specified\n", __func__);
|
2010-10-14 22:01:40 +00:00
|
|
|
return (EINVAL);
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
|
|
|
|
2010-10-14 22:01:40 +00:00
|
|
|
if (offloc != MII_OFFSET_ANY && (offloc < 0 || offloc >= MII_NPHY)) {
|
2015-01-21 09:01:48 +00:00
|
|
|
printf("%s: invalid offloc %d\n", __func__, offloc);
|
2010-10-14 22:01:40 +00:00
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (phyloc == MII_PHY_ANY) {
|
|
|
|
phymin = 0;
|
|
|
|
phymax = MII_NPHY - 1;
|
|
|
|
} else {
|
|
|
|
if (phyloc < 0 || phyloc >= MII_NPHY) {
|
2015-01-21 09:01:48 +00:00
|
|
|
printf("%s: invalid phyloc %d\n", __func__, phyloc);
|
2010-10-14 22:01:40 +00:00
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
phymin = phymax = phyloc;
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
|
|
|
|
2010-10-14 22:01:40 +00:00
|
|
|
first = 0;
|
|
|
|
if (*miibus == NULL) {
|
|
|
|
first = 1;
|
|
|
|
ivars = malloc(sizeof(*ivars), M_DEVBUF, M_NOWAIT);
|
|
|
|
if (ivars == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
ivars->ifp = ifp;
|
|
|
|
ivars->ifmedia_upd = ifmedia_upd;
|
|
|
|
ivars->ifmedia_sts = ifmedia_sts;
|
|
|
|
ivars->mii_flags = flags;
|
|
|
|
*miibus = device_add_child(dev, "miibus", -1);
|
|
|
|
if (*miibus == NULL) {
|
|
|
|
rv = ENXIO;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
device_set_ivars(*miibus, ivars);
|
|
|
|
} else {
|
|
|
|
ivars = device_get_ivars(*miibus);
|
|
|
|
if (ivars->ifp != ifp || ivars->ifmedia_upd != ifmedia_upd ||
|
|
|
|
ivars->ifmedia_sts != ifmedia_sts ||
|
|
|
|
ivars->mii_flags != flags) {
|
2010-11-22 20:57:44 +00:00
|
|
|
printf("%s: non-matching invariant\n", __func__);
|
2010-10-14 22:01:40 +00:00
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Assignment of the attach arguments mii_data for the first
|
|
|
|
* pass is done in miibus_attach(), i.e. once the miibus softc
|
|
|
|
* has been allocated.
|
|
|
|
*/
|
|
|
|
ma.mii_data = device_get_softc(*miibus);
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
}
|
2010-10-14 22:01:40 +00:00
|
|
|
|
|
|
|
ma.mii_capmask = capmask;
|
|
|
|
|
2011-11-18 22:39:46 +00:00
|
|
|
if (resource_int_value(device_get_name(*miibus),
|
|
|
|
device_get_unit(*miibus), "phymask", &phymask) != 0)
|
|
|
|
phymask = 0xffffffff;
|
|
|
|
|
|
|
|
if (device_get_children(*miibus, &children, &nchildren) != 0) {
|
|
|
|
children = NULL;
|
|
|
|
nchildren = 0;
|
|
|
|
}
|
|
|
|
ivars->mii_offset = 0;
|
2010-10-14 22:01:40 +00:00
|
|
|
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.
|
|
|
|
*/
|
2011-11-18 22:39:46 +00:00
|
|
|
for (i = 0; i < nchildren; i++) {
|
|
|
|
args = device_get_ivars(children[i]);
|
|
|
|
if (args->mii_phyno == ma.mii_phyno) {
|
|
|
|
/*
|
|
|
|
* Yes, there is already something
|
|
|
|
* configured at this address.
|
|
|
|
*/
|
|
|
|
goto skip;
|
2010-10-14 22:01:40 +00: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.
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
*/
|
2010-10-14 22:01:40 +00:00
|
|
|
bmsr = MIIBUS_READREG(dev, ma.mii_phyno, MII_BMSR);
|
|
|
|
if (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.
|
|
|
|
*/
|
2011-11-18 22:39:46 +00:00
|
|
|
if (offloc != MII_OFFSET_ANY && offloc != ivars->mii_offset)
|
2010-10-14 22:01:40 +00:00
|
|
|
goto skip;
|
|
|
|
|
|
|
|
/*
|
2011-11-18 22:39:46 +00:00
|
|
|
* Skip this PHY if it's not included in the phymask hint.
|
|
|
|
*/
|
|
|
|
if ((phymask & (1 << ma.mii_phyno)) == 0)
|
|
|
|
goto skip;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract the IDs. Braindead PHYs will be handled by
|
2010-10-14 22:01:40 +00:00
|
|
|
* the `ukphy' driver, as we have no ID information to
|
|
|
|
* match on.
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
*/
|
2010-10-14 22:01:40 +00:00
|
|
|
ma.mii_id1 = MIIBUS_READREG(dev, ma.mii_phyno, MII_PHYIDR1);
|
|
|
|
ma.mii_id2 = MIIBUS_READREG(dev, ma.mii_phyno, MII_PHYIDR2);
|
|
|
|
|
2011-11-18 22:39:46 +00:00
|
|
|
ma.mii_offset = ivars->mii_offset;
|
2010-10-14 22:01:40 +00:00
|
|
|
args = malloc(sizeof(struct mii_attach_args), M_DEVBUF,
|
|
|
|
M_NOWAIT);
|
|
|
|
if (args == NULL)
|
|
|
|
goto skip;
|
|
|
|
bcopy((char *)&ma, (char *)args, sizeof(ma));
|
|
|
|
phy = device_add_child(*miibus, NULL, -1);
|
|
|
|
if (phy == NULL) {
|
|
|
|
free(args, M_DEVBUF);
|
|
|
|
goto skip;
|
|
|
|
}
|
|
|
|
device_set_ivars(phy, args);
|
|
|
|
skip:
|
2011-11-18 22:39:46 +00:00
|
|
|
ivars->mii_offset++;
|
2010-10-14 22:01:40 +00:00
|
|
|
}
|
2011-11-18 22:39:46 +00:00
|
|
|
free(children, M_TEMP);
|
2010-10-14 22:01:40 +00:00
|
|
|
|
|
|
|
if (first != 0) {
|
2011-12-05 21:38:45 +00:00
|
|
|
rv = device_set_driver(*miibus, &miibus_driver);
|
2011-11-18 22:39:46 +00:00
|
|
|
if (rv != 0)
|
|
|
|
goto fail;
|
|
|
|
bus_enumerate_hinted_children(*miibus);
|
|
|
|
rv = device_get_children(*miibus, &children, &nchildren);
|
|
|
|
if (rv != 0)
|
|
|
|
goto fail;
|
|
|
|
free(children, M_TEMP);
|
|
|
|
if (nchildren == 0) {
|
2010-10-14 22:01:40 +00:00
|
|
|
rv = ENXIO;
|
|
|
|
goto fail;
|
|
|
|
}
|
2011-12-05 21:38:45 +00:00
|
|
|
rv = bus_generic_attach(dev);
|
2010-10-14 22:01:40 +00:00
|
|
|
if (rv != 0)
|
|
|
|
goto fail;
|
2010-11-15 21:41:45 +00:00
|
|
|
|
|
|
|
/* Attaching of the PHY drivers is done in miibus_attach(). */
|
|
|
|
return (0);
|
2010-10-14 22:01:40 +00:00
|
|
|
}
|
|
|
|
rv = bus_generic_attach(*miibus);
|
|
|
|
if (rv != 0)
|
|
|
|
goto fail;
|
1999-08-21 17:40:53 +00:00
|
|
|
|
2010-10-02 17:20:30 +00:00
|
|
|
return (0);
|
2010-10-14 22:01:40 +00:00
|
|
|
|
|
|
|
fail:
|
|
|
|
if (*miibus != NULL)
|
|
|
|
device_delete_child(dev, *miibus);
|
|
|
|
free(ivars, M_DEVBUF);
|
|
|
|
if (first != 0)
|
|
|
|
*miibus = NULL;
|
|
|
|
return (rv);
|
|
|
|
}
|
|
|
|
|
1999-08-21 17:40:53 +00:00
|
|
|
/*
|
|
|
|
* Media changed; notify all PHYs.
|
|
|
|
*/
|
|
|
|
int
|
2005-02-15 06:02:34 +00:00
|
|
|
mii_mediachg(struct mii_data *mii)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
|
|
|
struct mii_softc *child;
|
2010-10-02 18:53:12 +00:00
|
|
|
struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
|
1999-08-21 17:40:53 +00:00
|
|
|
int rv;
|
|
|
|
|
|
|
|
mii->mii_media_status = 0;
|
|
|
|
mii->mii_media_active = IFM_NONE;
|
|
|
|
|
2001-02-04 16:08:18 +00:00
|
|
|
LIST_FOREACH(child, &mii->mii_phys, mii_list) {
|
2010-10-02 18:53:12 +00:00
|
|
|
/*
|
|
|
|
* If the media indicates a different PHY instance,
|
|
|
|
* isolate this one.
|
|
|
|
*/
|
|
|
|
if (IFM_INST(ife->ifm_media) != child->mii_inst) {
|
|
|
|
if ((child->mii_flags & MIIF_NOISOLATE) != 0) {
|
|
|
|
device_printf(child->mii_dev, "%s: "
|
|
|
|
"can't handle non-zero PHY instance %d\n",
|
|
|
|
__func__, child->mii_inst);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
PHY_WRITE(child, MII_BMCR, PHY_READ(child, MII_BMCR) |
|
|
|
|
BMCR_ISO);
|
|
|
|
continue;
|
|
|
|
}
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
rv = PHY_SERVICE(child, mii, MII_MEDIACHG);
|
1999-08-21 17:40:53 +00:00
|
|
|
if (rv)
|
|
|
|
return (rv);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Call the PHY tick routines, used during autonegotiation.
|
|
|
|
*/
|
|
|
|
void
|
2005-02-15 06:02:34 +00:00
|
|
|
mii_tick(struct mii_data *mii)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
|
|
|
struct mii_softc *child;
|
2010-10-02 18:53:12 +00:00
|
|
|
struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
|
1999-08-21 17:40:53 +00:00
|
|
|
|
2010-10-02 18:53:12 +00:00
|
|
|
LIST_FOREACH(child, &mii->mii_phys, mii_list) {
|
|
|
|
/*
|
|
|
|
* If this PHY instance isn't currently selected, just skip
|
|
|
|
* it.
|
|
|
|
*/
|
|
|
|
if (IFM_INST(ife->ifm_media) != child->mii_inst)
|
|
|
|
continue;
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
(void)PHY_SERVICE(child, mii, MII_TICK);
|
2010-10-02 18:53:12 +00:00
|
|
|
}
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get media status from PHYs.
|
|
|
|
*/
|
|
|
|
void
|
2005-02-15 06:02:34 +00:00
|
|
|
mii_pollstat(struct mii_data *mii)
|
1999-08-21 17:40:53 +00:00
|
|
|
{
|
|
|
|
struct mii_softc *child;
|
2010-10-02 18:53:12 +00:00
|
|
|
struct ifmedia_entry *ife = mii->mii_media.ifm_cur;
|
1999-08-21 17:40:53 +00:00
|
|
|
|
|
|
|
mii->mii_media_status = 0;
|
|
|
|
mii->mii_media_active = IFM_NONE;
|
|
|
|
|
2010-10-02 18:53:12 +00:00
|
|
|
LIST_FOREACH(child, &mii->mii_phys, mii_list) {
|
|
|
|
/*
|
|
|
|
* If we're not polling this PHY instance, just skip it.
|
|
|
|
*/
|
|
|
|
if (IFM_INST(ife->ifm_media) != child->mii_inst)
|
|
|
|
continue;
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
(void)PHY_SERVICE(child, mii, MII_POLLSTAT);
|
2010-10-02 18:53:12 +00:00
|
|
|
}
|
1999-08-21 17:40:53 +00:00
|
|
|
}
|
2002-04-29 13:07:38 +00:00
|
|
|
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
static unsigned char
|
|
|
|
mii_bitreverse(unsigned char x)
|
|
|
|
{
|
2012-11-05 19:16:27 +00:00
|
|
|
static unsigned const char nibbletab[16] = {
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15
|
|
|
|
};
|
|
|
|
|
|
|
|
return ((nibbletab[x & 15] << 4) | nibbletab[x >> 4]);
|
|
|
|
}
|
|
|
|
|
|
|
|
u_int
|
|
|
|
mii_oui(u_int id1, u_int id2)
|
|
|
|
{
|
|
|
|
u_int h;
|
|
|
|
|
|
|
|
h = (id1 << 6) | (id2 >> 10);
|
|
|
|
|
|
|
|
return ((mii_bitreverse(h >> 16) << 16) |
|
2011-05-14 20:31:04 +00:00
|
|
|
(mii_bitreverse((h >> 8) & 0xff) << 8) |
|
|
|
|
mii_bitreverse(h & 0xff));
|
- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOP
(reporting IFM_LOOP based on BMCR_LOOP is left in place though as
it might provide useful for debugging). For most mii(4) drivers it
was unclear whether the PHYs driven by them actually support
loopback or not. Moreover, typically loopback mode also needs to
be activated on the MAC, which none of the Ethernet drivers using
mii(4) implements. Given that loopback media has no real use (and
obviously hardly had a chance to actually work) besides for driver
development (which just loopback mode should be sufficient for
though, i.e one doesn't necessary need support for loopback media)
support for it is just dropped as both NetBSD and OpenBSD already
did quite some time ago.
- Let mii_phy_add_media() also announce the support of IFM_NONE.
- Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for lxtphy(4) which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
This includes changing NIC drivers which previously just called the
generic mii_phy_reset() to now actually call the PHY-specific reset
routine, which might be crucial in some cases. While at it, the
redundant checks in these NIC drivers for mii->mii_instance not being
zero before calling the reset routines were removed because as soon
as one PHY driver attaches mii->mii_instance is incremented and we
hardly can end up in their media change callbacks etc if no PHY driver
has attached as mii_attach() would have failed in that case and not
attach a miibus(4) instance.
Consequently, NIC drivers now no longer should call mii_phy_reset()
directly, so it was removed from EXPORT_SYMS.
- Add a mii_phy_dev_attach() as a companion helper to mii_phy_dev_probe().
The purpose of that function is to perform the common steps to attach
a PHY driver instance and to hook it up to the miibus(4) instance and to
optionally also handle the probing, addition and initialization of the
supported media. So all a PHY driver without any special requirements
has to do in its bus attach method is to call mii_phy_dev_attach()
along with PHY-specific MIIF_* flags, a pointer to its PHY functions
and the add_media set to one. All PHY drivers were updated to take
advantage of mii_phy_dev_attach() as appropriate. Along with these
changes the capability mask was added to the mii_softc structure so
PHY drivers taking advantage of mii_phy_dev_attach() but still
handling media on their own do not need to fiddle with the MII attach
arguments anyway.
- Keep track of the PHY offset in the mii_softc structure. This is done
for compatibility with NetBSD/OpenBSD.
- Keep track of the PHY's OUI, model and revision in the mii_softc
structure. Several PHY drivers require this information also after
attaching and previously had to wrap their own softc around mii_softc.
NetBSD/OpenBSD also keep track of the model and revision on their
mii_softc structure. All PHY drivers were updated to take advantage
as appropriate.
- Convert the mebers of the MII data structure to unsigned where
appropriate. This is partly inspired by NetBSD/OpenBSD.
- According to IEEE 802.3-2002 the bits actually have to be reversed
when mapping an OUI to the MII ID registers. All PHY drivers and
miidevs where changed as necessary. Actually this now again allows to
largely share miidevs with NetBSD, which fixed this problem already
9 years ago. Consequently miidevs was synced as far as possible.
- Add MIIF_NOMANPAUSE and mii_phy_flowstatus() calls to drivers that
weren't explicitly converted to support flow control before. It's
unclear whether flow control actually works with these but typically
it should and their net behavior should be more correct with these
changes in place than without if the MAC driver sets MIIF_DOPAUSE.
Obtained from: NetBSD (partially)
Reviewed by: yongari (earlier version), silence on arch@ and net@
2011-05-03 19:51:29 +00:00
|
|
|
}
|
2015-01-12 22:27:38 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
mii_phy_mac_match(struct mii_softc *mii, const char *name)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (strcmp(device_get_name(device_get_parent(mii->mii_dev)),
|
|
|
|
name) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
mii_dev_mac_match(device_t parent, const char *name)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (strcmp(device_get_name(device_get_parent(
|
|
|
|
device_get_parent(parent))), name) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
mii_phy_mac_softc(struct mii_softc *mii)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (device_get_softc(device_get_parent(mii->mii_dev)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
mii_dev_mac_softc(device_t parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (device_get_softc(device_get_parent(device_get_parent(parent))));
|
|
|
|
}
|