#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_fmv_isa.c,v 1.14 2026/02/03 21:34:56 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <net/if.h>
#include <net/if_ether.h>
#include <net/if_media.h>
#include <sys/bus.h>
#include <sys/intr.h>
#include <dev/ic/mb86960reg.h>
#include <dev/ic/mb86960var.h>
#include <dev/ic/fmvreg.h>
#include <dev/ic/fmvvar.h>
#include <dev/isa/isavar.h>
int fmv_isa_match(device_t, cfdata_t, void *);
void fmv_isa_attach(device_t, device_t, void *);
struct fmv_isa_softc {
struct mb86960_softc sc_mb86960;
void *sc_ih;
};
CFATTACH_DECL_NEW(fmv_isa, sizeof(struct fmv_isa_softc),
fmv_isa_match, fmv_isa_attach, NULL, NULL);
struct fe_simple_probe_struct {
uint8_t port;
uint8_t mask;
uint8_t bits;
};
static inline int fe_simple_probe(bus_space_tag_t, bus_space_handle_t,
struct fe_simple_probe_struct const *);
static int fmv_find(bus_space_tag_t, bus_space_handle_t, int *, int *);
static const int fmv_iomap[8] = {
0x220, 0x240, 0x260, 0x280, 0x2A0, 0x2C0, 0x300, 0x340
};
#define NFMV_IOMAP __arraycount(fmv_iomap)
#define FMV_NPORTS 0x20
#ifdef FMV_DEBUG
#define DPRINTF printf
#else
#define DPRINTF while (0) printf
#endif
int
fmv_isa_match(device_t parent, cfdata_t cf, void *aux)
{
struct isa_attach_args *ia = aux;
bus_space_tag_t iot = ia->ia_iot;
bus_space_handle_t ioh;
int i, iobase, irq, rv = 0;
uint8_t myea[ETHER_ADDR_LEN];
if (ia->ia_nio < 1)
return 0;
if (ia->ia_nirq < 1)
return 0;
if (ISA_DIRECT_CONFIG(ia))
return 0;
if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
return 0;
for (i = 0; i < NFMV_IOMAP; i++)
if (fmv_iomap[i] == ia->ia_io[0].ir_addr)
break;
if (i == NFMV_IOMAP) {
DPRINTF("%s: unknown iobase 0x%x\n",
__func__, ia->ia_io[0].ir_addr);
return 0;
}
if (bus_space_map(iot, ia->ia_io[0].ir_addr, FMV_NPORTS, 0, &ioh)) {
DPRINTF("%s: couldn't map iospace 0x%x\n",
__func__, ia->ia_io[0].ir_addr);
return 0;
}
if (fmv_find(iot, ioh, &iobase, &irq) == 0) {
DPRINTF("%s: fmv_find failed\n", __func__);
goto out;
}
if (iobase != ia->ia_io[0].ir_addr) {
DPRINTF("%s: unexpected iobase in board: 0x%x\n",
__func__, iobase);
goto out;
}
if (fmv_detect(iot, ioh, myea) == 0) {
DPRINTF("%s: fmv_detect failed\n", __func__);
goto out;
}
if (ia->ia_irq[0].ir_irq != ISA_UNKNOWN_IRQ) {
if (ia->ia_irq[0].ir_irq != irq) {
aprint_error("%s: irq mismatch; "
"kernel configured %d != board configured %d\n",
__func__, ia->ia_irq[0].ir_irq, irq);
goto out;
}
} else
ia->ia_irq[0].ir_irq = irq;
ia->ia_nio = 1;
ia->ia_io[0].ir_size = FMV_NPORTS;
ia->ia_nirq = 1;
ia->ia_niomem = 0;
ia->ia_ndrq = 0;
rv = 1;
out:
bus_space_unmap(iot, ioh, FMV_NPORTS);
return rv;
}
static inline int
fe_simple_probe(bus_space_tag_t iot, bus_space_handle_t ioh,
const struct fe_simple_probe_struct *sp)
{
uint8_t val;
const struct fe_simple_probe_struct *p;
for (p = sp; p->mask != 0; p++) {
val = bus_space_read_1(iot, ioh, p->port);
if ((val & p->mask) != p->bits) {
DPRINTF("%s: %x & %x != %x\n",
__func__, val, p->mask, p->bits);
return 0;
}
}
return 1;
}
static int
fmv_find(bus_space_tag_t iot, bus_space_handle_t ioh, int *iobase, int *irq)
{
uint8_t config;
static const int fmv_irqmap[4] = { 3, 7, 10, 15 };
static const struct fe_simple_probe_struct probe_table[] = {
{ FE_DLCR2, 0x70, 0x00 },
{ FE_DLCR4, 0x08, 0x00 },
{ FE_FMV0, FE_FMV0_MAGIC_MASK, FE_FMV0_MAGIC_VALUE },
{ FE_FMV1, FE_FMV1_MAGIC_MASK, FE_FMV1_MAGIC_VALUE },
{ FE_FMV3, FE_FMV3_EXTRA_MASK, FE_FMV3_EXTRA_VALUE },
#if 1
{ FE_FMV4, 0xFF, 0x00 },
{ FE_FMV5, 0xFF, 0x00 },
{ FE_FMV6, 0xFF, 0x0E },
#else
{ FE_FMV4, 0x03, 0x00 },
#endif
{ 0, 0x00, 0x00 },
};
if (fe_simple_probe(iot, ioh, probe_table) == 0)
return 0;
config = bus_space_read_1(iot, ioh, FE_FMV2);
*iobase = fmv_iomap[(config & FE_FMV2_ADDR) >> FE_FMV2_ADDR_SHIFT];
*irq = fmv_irqmap[(config & FE_FMV2_IRQ) >> FE_FMV2_IRQ_SHIFT];
return 1;
}
void
fmv_isa_attach(device_t parent, device_t self, void *aux)
{
struct fmv_isa_softc *isc = device_private(self);
struct mb86960_softc *sc = &isc->sc_mb86960;
struct isa_attach_args *ia = aux;
bus_space_tag_t iot = ia->ia_iot;
bus_space_handle_t ioh;
sc->sc_dev = self;
if (bus_space_map(iot, ia->ia_io[0].ir_addr, FMV_NPORTS, 0, &ioh)) {
aprint_error(": can't map i/o space\n");
return;
}
sc->sc_bst = iot;
sc->sc_bsh = ioh;
fmv_attach(sc);
isc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
IST_EDGE, IPL_NET, mb86960_intr, sc);
if (isc->sc_ih == NULL)
aprint_error_dev(sc->sc_dev,
"couldn't establish interrupt handler\n");
}