#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: slhci_intio.c,v 1.16 2024/01/07 07:58:33 isaki Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <machine/cpu.h>
#include <dev/usb/usb.h>
#include <dev/usb/usbdi.h>
#include <dev/usb/usbdivar.h>
#include <dev/ic/sl811hsreg.h>
#include <dev/ic/sl811hsvar.h>
#include <arch/x68k/dev/intiovar.h>
#include <arch/x68k/dev/slhci_intio_var.h>
static int slhci_intio_match(device_t, cfdata_t, void *);
static void slhci_intio_attach(device_t, device_t, void *);
static void slhci_intio_enable_power(void *, enum power_change);
static void slhci_intio_enable_intr(void *, int);
CFATTACH_DECL_NEW(slhci_intio, sizeof(struct slhci_intio_softc),
slhci_intio_match, slhci_intio_attach, NULL, NULL);
#define INTR_ON 1
#define INTR_OFF 0
static int
slhci_intio_match(device_t parent, cfdata_t cf, void *aux)
{
struct intio_attach_args *ia = aux;
bus_space_tag_t iot = ia->ia_bst;
bus_space_handle_t ioh;
bus_space_handle_t nch;
int nc_addr;
int nc_size;
if (ia->ia_addr == INTIOCF_ADDR_DEFAULT)
ia->ia_addr = SLHCI_INTIO_ADDR1;
if (ia->ia_intr == INTIOCF_INTR_DEFAULT)
ia->ia_intr = SLHCI_INTIO_INTR1;
if ( !(ia->ia_addr == SLHCI_INTIO_ADDR1 &&
ia->ia_intr == SLHCI_INTIO_INTR1 ) &&
!(ia->ia_addr == SLHCI_INTIO_ADDR2 &&
ia->ia_intr == SLHCI_INTIO_INTR2 ) )
return 0;
if (badaddr((void *)IIOV(ia->ia_addr)))
return 0;
nc_addr = ia->ia_addr + NEREID_ADDR_OFFSET;
nc_size = 0x02;
if (badbaddr((void *)IIOV(nc_addr)))
return 0;
ia->ia_size = SL11_PORTSIZE * 2;
if (bus_space_map(iot, ia->ia_addr, ia->ia_size,
BUS_SPACE_MAP_SHIFTED, &ioh))
return 0;
if (bus_space_map(iot, nc_addr, nc_size,
BUS_SPACE_MAP_SHIFTED, &nch))
return 0;
bus_space_unmap(iot, ioh, ia->ia_size);
bus_space_unmap(iot, nch, nc_size);
return 1;
}
static void
slhci_intio_attach(device_t parent, device_t self, void *aux)
{
struct slhci_intio_softc *isc = device_private(self);
struct slhci_softc *sc = &isc->sc_sc;
struct intio_attach_args *ia = aux;
bus_space_tag_t iot = ia->ia_bst;
bus_space_handle_t ioh;
int nc_addr;
int nc_size;
sc->sc_dev = self;
sc->sc_bus.ub_hcpriv = sc;
printf(": Nereid USB\n");
if (bus_space_map(iot, ia->ia_addr, SL11_PORTSIZE * 2,
BUS_SPACE_MAP_SHIFTED, &ioh)) {
printf("%s: can't map I/O space\n",
device_xname(self));
return;
}
nc_addr = ia->ia_addr + NEREID_ADDR_OFFSET;
nc_size = 0x02;
if (bus_space_map(iot, nc_addr, nc_size,
BUS_SPACE_MAP_SHIFTED, &isc->sc_nch)) {
printf("%s: can't map I/O control space\n",
device_xname(self));
return;
}
slhci_preinit(sc, slhci_intio_enable_power, iot, ioh, 30,
SL11_IDX_DATA);
if (intio_intr_establish(ia->ia_intr, "slhci", slhci_intr, sc)) {
printf("%s: can't establish interrupt\n",
device_xname(self));
return;
}
bus_space_write_1(iot, isc->sc_nch, NEREID_CTRL, NEREID_CTRL_RESET);
delay(40000);
slhci_intio_enable_intr(sc, INTR_ON);
if (slhci_attach(sc))
return;
}
static void
slhci_intio_enable_power(void *arg, enum power_change mode)
{
struct slhci_intio_softc *sc = arg;
bus_space_tag_t iot = sc->sc_sc.sc_iot;
u_int8_t r;
r = bus_space_read_1(iot, sc->sc_nch, NEREID_CTRL);
if (mode == POWER_ON)
bus_space_write_1(iot, sc->sc_nch, NEREID_CTRL,
r | NEREID_CTRL_POWER);
else
bus_space_write_1(iot, sc->sc_nch, NEREID_CTRL,
r & ~NEREID_CTRL_POWER);
}
static void
slhci_intio_enable_intr(void *arg, int mode)
{
struct slhci_intio_softc *sc = arg;
bus_space_tag_t iot = sc->sc_sc.sc_iot;
u_int8_t r;
r = bus_space_read_1(iot, sc->sc_nch, NEREID_CTRL);
if (mode == INTR_ON)
bus_space_write_1(iot, sc->sc_nch, NEREID_CTRL,
r | NEREID_CTRL_INTR);
else
bus_space_write_1(iot, sc->sc_nch, NEREID_CTRL,
r & ~NEREID_CTRL_INTR);
}