#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_cs_ofisa.c,v 1.32 2021/04/28 03:34:02 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/rndsource.h>
#include <net/if.h>
#include <net/if_ether.h>
#include <net/if_media.h>
#ifdef INET
#include <netinet/in.h>
#include <netinet/if_inarp.h>
#endif
#include <sys/bus.h>
#include <sys/intr.h>
#include <dev/ofw/openfirm.h>
#include <dev/isa/isavar.h>
#include <dev/ofisa/ofisavar.h>
#include <dev/ic/cs89x0reg.h>
#include <dev/ic/cs89x0var.h>
#include <dev/isa/cs89x0isavar.h>
static int cs_ofisa_match(device_t, cfdata_t, void *);
static void cs_ofisa_attach(device_t, device_t, void *);
CFATTACH_DECL_NEW(cs_ofisa, sizeof(struct cs_softc_isa),
cs_ofisa_match, cs_ofisa_attach, NULL, NULL);
static const struct device_compatible_entry compat_data[] = {
{ .compat = "CRUS,CS8900" },
DEVICE_COMPAT_EOL
};
int
cs_ofisa_match(device_t parent, cfdata_t cf, void *aux)
{
struct ofisa_attach_args *aa = aux;
int rv;
rv = of_compatible_match(aa->oba.oba_phandle, compat_data) ? 5 : 0;
#ifdef _CS_OFISA_MD_MATCH
if (rv == 0)
rv = cs_ofisa_md_match(parent, cf, aux);
#endif
return (rv);
}
void
cs_ofisa_attach(device_t parent, device_t self, void *aux)
{
struct cs_softc_isa *isc = device_private(self);
struct cs_softc *sc = &isc->sc_cs;
struct ofisa_attach_args *aa = aux;
struct ofisa_reg_desc reg[2];
struct ofisa_intr_desc intr;
struct ofisa_dma_desc dma;
int i, n, *media, nmedia, defmedia;
bus_addr_t io_addr, mem_addr;
const char *message = NULL;
u_int8_t enaddr[6];
sc->sc_dev = self;
isc->sc_ic = aa->ic;
sc->sc_iot = aa->iot;
sc->sc_memt = aa->memt;
io_addr = mem_addr = -1;
n = ofisa_reg_get(aa->oba.oba_phandle, reg, 2);
#ifdef _CS_OFISA_MD_REG_FIXUP
n = cs_ofisa_md_reg_fixup(parent, self, aux, reg, 2, n);
#endif
if (n < 1 || n > 2) {
aprint_error(": error getting register data\n");
return;
}
for (i = 0; i < n; i++) {
if (reg[i].type == OFISA_REG_TYPE_IO) {
if (io_addr != (bus_addr_t) -1) {
aprint_error(": multiple I/O regions\n");
return;
}
if (reg[i].len != CS8900_IOSIZE) {
aprint_error(": weird register size (%lu, expected %d)\n",
(unsigned long)reg[i].len, CS8900_IOSIZE);
return;
}
io_addr = reg[i].addr;
} else {
if (mem_addr != (bus_addr_t) -1) {
aprint_error(": multiple memory regions\n");
return;
}
if (reg[i].len != CS8900_MEMSIZE) {
aprint_error(": weird register size (%lu, expected %d)\n",
(unsigned long)reg[i].len, CS8900_MEMSIZE);
return;
}
mem_addr = reg[i].addr;
}
}
n = ofisa_intr_get(aa->oba.oba_phandle, &intr, 1);
#ifdef _CS_OFISA_MD_INTR_FIXUP
n = cs_ofisa_md_intr_fixup(parent, self, aux, &intr, 1, n);
#endif
if (n != 1) {
aprint_error(": error getting interrupt data\n");
return;
}
sc->sc_irq = intr.irq;
if (CS8900_IRQ_ISVALID(sc->sc_irq) == 0) {
aprint_error(": invalid IRQ %d\n", sc->sc_irq);
return;
}
isc->sc_drq = -1;
n = ofisa_dma_get(aa->oba.oba_phandle, &dma, 1);
#ifdef _CS_OFISA_MD_DMA_FIXUP
n = cs_ofisa_md_dma_fixup(parent, self, aux, &dma, 1, n);
#endif
if (n == 1)
isc->sc_drq = dma.drq;
if (io_addr == (bus_addr_t) -1) {
aprint_error(": no I/O space\n");
return;
}
if (bus_space_map(sc->sc_iot, io_addr, CS8900_IOSIZE, 0,
&sc->sc_ioh)) {
aprint_error(": unable to map register space\n");
return;
}
if (mem_addr != (bus_addr_t) -1) {
if (bus_space_map(sc->sc_memt, mem_addr, CS8900_MEMSIZE, 0,
&sc->sc_memh)) {
message = "unable to map memory space";
} else {
sc->sc_cfgflags |= CFGFLG_MEM_MODE;
sc->sc_pktpgaddr = mem_addr;
}
}
if (OF_getprop(aa->oba.oba_phandle, "mac-address", enaddr,
sizeof(enaddr)) < 0) {
aprint_error(": unable to get Ethernet address\n");
return;
}
media = of_network_decode_media(aa->oba.oba_phandle, &nmedia,
&defmedia);
#ifdef _CS_OFISA_MD_MEDIA_FIXUP
media = cs_ofisa_md_media_fixup(parent, self, aux, media, &nmedia,
&defmedia);
#endif
if (media == NULL) {
aprint_error(": unable to get media information\n");
return;
}
ofisa_print_model(NULL, aa->oba.oba_phandle);
if (message != NULL)
aprint_normal_dev(self, "%s\n", message);
if (defmedia == -1) {
aprint_error_dev(self, "unable to get default media\n");
defmedia = media[0];
}
sc->sc_ih = isa_intr_establish(isc->sc_ic, sc->sc_irq, intr.share,
IPL_NET, cs_intr, sc);
if (sc->sc_ih == NULL) {
aprint_error_dev(self, "unable to establish interrupt\n");
return;
}
#ifdef _CS_OFISA_MD_CFGFLAGS_FIXUP
sc->sc_cfgflags |= cs_ofisa_md_cfgflags_fixup(parent, self, aux);
#endif
sc->sc_dma_chipinit = cs_isa_dma_chipinit;
sc->sc_dma_attach = cs_isa_dma_attach;
sc->sc_dma_process_rx = cs_process_rx_dma;
cs_attach(sc, enaddr, media, nmedia, defmedia);
free(media, M_DEVBUF);
}