#include <sys/param.h>
#include <sys/bus.h>
#include <sys/systm.h>
#include <sys/module.h>
#include <dev/mdio/mdio.h>
#include "mdio_if.h"
static void
mdio_identify(driver_t *driver, device_t parent)
{
if (device_find_child(parent, mdio_driver.name, DEVICE_UNIT_ANY) == NULL)
BUS_ADD_CHILD(parent, 0, mdio_driver.name, DEVICE_UNIT_ANY);
}
static int
mdio_probe(device_t dev)
{
device_set_desc(dev, "MDIO");
return (BUS_PROBE_SPECIFIC);
}
static int
mdio_attach(device_t dev)
{
bus_identify_children(dev);
bus_enumerate_hinted_children(dev);
bus_attach_children(dev);
return (0);
}
static int
mdio_readreg(device_t dev, int phy, int reg)
{
return (MDIO_READREG(device_get_parent(dev), phy, reg));
}
static int
mdio_writereg(device_t dev, int phy, int reg, int val)
{
return (MDIO_WRITEREG(device_get_parent(dev), phy, reg, val));
}
static int
mdio_readextreg(device_t dev, int phy, int devad, int reg)
{
return (MDIO_READEXTREG(device_get_parent(dev), phy, devad, reg));
}
static int
mdio_writeextreg(device_t dev, int phy, int devad, int reg,
int val)
{
return (MDIO_WRITEEXTREG(device_get_parent(dev), phy, devad, reg, val));
}
static void
mdio_hinted_child(device_t dev, const char *name, int unit)
{
device_add_child(dev, name, unit);
}
static device_method_t mdio_methods[] = {
DEVMETHOD(device_identify, mdio_identify),
DEVMETHOD(device_probe, mdio_probe),
DEVMETHOD(device_attach, mdio_attach),
DEVMETHOD(device_detach, bus_generic_detach),
DEVMETHOD(device_shutdown, bus_generic_shutdown),
DEVMETHOD(bus_add_child, device_add_child_ordered),
DEVMETHOD(bus_hinted_child, mdio_hinted_child),
DEVMETHOD(mdio_readreg, mdio_readreg),
DEVMETHOD(mdio_writereg, mdio_writereg),
DEVMETHOD(mdio_readextreg, mdio_readextreg),
DEVMETHOD(mdio_writeextreg, mdio_writeextreg),
DEVMETHOD_END
};
driver_t mdio_driver = {
"mdio",
mdio_methods,
0
};
MODULE_VERSION(mdio, 1);