#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_sm_mainbus.c,v 1.4 2012/10/27 17:17:51 chs Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/bus.h>
#include <net/if.h>
#include <net/if_ether.h>
#include <net/if_media.h>
#include <machine/autoconf.h>
#include <machine/intr.h>
#include <dev/mii/mii.h>
#include <dev/mii/miivar.h>
#include <dev/ic/smc91cxxreg.h>
#include <dev/ic/smc91cxxvar.h>
#include <evbsh3/ap_ms104_sh4/ap_ms104_sh4reg.h>
#include <evbsh3/ap_ms104_sh4/ap_ms104_sh4var.h>
static int sm_mainbus_match(device_t, cfdata_t, void *);
static void sm_mainbus_attach(device_t, device_t, void *);
struct sm_mainbus_softc {
struct smc91cxx_softc sc_sm;
void *sc_ih;
};
CFATTACH_DECL_NEW(sm_mainbus, sizeof(struct sm_mainbus_softc),
sm_mainbus_match, sm_mainbus_attach, NULL, NULL);
static int
sm_mainbus_match(device_t parent, cfdata_t cf, void *aux)
{
struct mainbus_attach_args *maa = (struct mainbus_attach_args *)aux;
if (strcmp(maa->ma_name, "sm") != 0)
return 0;
return 1;
}
static void
sm_mainbus_attach(device_t parent, device_t self, void *aux)
{
struct sm_mainbus_softc *smsc = device_private(self);
struct smc91cxx_softc *sc = &smsc->sc_sm;
bus_space_tag_t bst = &ap_ms104_sh4_bus_io;
bus_space_handle_t bsh;
aprint_naive("\n");
aprint_normal("\n");
if (bus_space_map(bst, 0x08000000, SMC_IOSIZE, 0, &bsh) != 0) {
aprint_error_dev(self, "can't map i/o space");
return;
}
smsc->sc_ih = extintr_establish(EXTINTR_INTR_SMC91C111, IST_LEVEL,
IPL_NET, smc91cxx_intr, sc);
if (smsc->sc_ih == NULL) {
aprint_error_dev(self, "couldn't establish interrupt\n");
bus_space_unmap(bst, bsh, SMC_IOSIZE);
return;
}
sc->sc_dev = self;
sc->sc_bst = bst;
sc->sc_bsh = bsh;
sc->sc_flags = SMC_FLAGS_ENABLED;
smc91cxx_attach(sc, NULL);
}