#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sio.c,v 1.17 2026/04/26 12:49:37 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <machine/cpu.h>
#include <machine/autoconf.h>
#include <luna68k/luna68k/isr.h>
#include <luna68k/dev/sioreg.h>
#include <luna68k/dev/siovar.h>
#include "ioconf.h"
static int sio_match(device_t, cfdata_t, void *);
static void sio_attach(device_t, device_t, void *);
static int sio_print(void *, const char *);
CFATTACH_DECL_NEW(sio, sizeof(struct sio_softc),
sio_match, sio_attach, NULL, NULL);
static void nullintr(void *);
static int xsiointr(void *);
static int
sio_match(device_t parent, cfdata_t cf, void *aux)
{
struct mainbus_attach_args *ma = aux;
if (strcmp(ma->ma_name, sio_cd.cd_name))
return 0;
if (badaddr_sz((void *)ma->ma_addr, 4))
return 0;
return 1;
}
static void
sio_attach(device_t parent, device_t self, void *aux)
{
struct sio_softc *sc = device_private(self);
struct mainbus_attach_args *ma = aux;
struct sio_attach_args sio_args;
int channel;
extern int sysconsole;
aprint_normal(": uPD7201A\n");
sc->sc_dev = self;
sc->sc_ctl = (void *)ma->ma_addr;
for (channel = 0; channel < 2; channel++) {
sc->sc_intrhand[channel].ih_func = nullintr;
sio_args.channel = channel;
sio_args.hwflags = (channel == sysconsole);
config_found(self, (void *)&sio_args, sio_print, CFARGS_NONE);
}
isrlink_autovec(xsiointr, sc, ma->ma_ilvl, ISRPRI_TTYNOBUF);
}
static int
sio_print(void *aux, const char *name)
{
struct sio_attach_args *args = aux;
if (name != NULL)
aprint_normal("%s: ", name);
if (args->channel != -1)
aprint_normal(" channel %d", args->channel);
return UNCONF;
}
static int
xsiointr(void *arg)
{
struct sio_softc *sc = arg;
(*sc->sc_intrhand[0].ih_func)(sc->sc_intrhand[0].ih_arg);
(*sc->sc_intrhand[1].ih_func)(sc->sc_intrhand[1].ih_arg);
return 1;
}
static void
nullintr(void *arg)
{
}