#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ioc.c,v 1.15 2026/04/30 03:12:39 adrian Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/callout.h>
#include <sys/kernel.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/errno.h>
#include <sys/syslog.h>
#include <uvm/uvm_extern.h>
#include <sys/bus.h>
#include <machine/cpu.h>
#include <machine/locore.h>
#include <machine/autoconf.h>
#include <machine/machtype.h>
#include <sgimips/ioc/iocreg.h>
#include <sgimips/ioc/iocvar.h>
#include "locators.h"
struct ioc_softc {
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
};
static int ioc_match(device_t, cfdata_t, void *);
static void ioc_attach(device_t, device_t, void *);
#if defined(notyet)
static int ioc_print(void *, const char *);
static int ioc_search(device_t, cfdata_t, const int *, void *);
#endif
CFATTACH_DECL_NEW(ioc, sizeof(struct ioc_softc),
ioc_match, ioc_attach, NULL, NULL);
#if defined(BLINK)
static callout_t ioc_blink_ch;
static void ioc_blink(void *);
#endif
static int
ioc_match(device_t parent, cfdata_t match, void *aux)
{
if (mach_type == MACH_SGI_IP22)
return 1;
return 0;
}
static void
ioc_attach(device_t parent, device_t self, void *aux)
{
struct ioc_softc *sc = device_private(self);
struct mainbus_attach_args *maa = aux;
u_int32_t sysid;
#ifdef BLINK
callout_init(&ioc_blink_ch, 0);
#endif
sc->sc_iot = normal_memt;
if (bus_space_map(sc->sc_iot, maa->ma_addr, 0x100,
BUS_SPACE_MAP_LINEAR, &sc->sc_ioh))
panic("ioc_attach: could not allocate memory\n");
sysid = bus_space_read_4(sc->sc_iot, sc->sc_ioh, IOC_SYSID) & 0x01;
if (sysid)
mach_subtype = MACH_SGI_IP22_FULLHOUSE;
else
mach_subtype = MACH_SGI_IP22_GUINNESS;
aprint_normal(": rev %d, machine %s, board rev %d\n",
((sysid & IOC_SYSID_CHIPREV) >> IOC_SYSID_CHIPREV_SHIFT),
(sysid & IOC_SYSID_SYSTYPE) ? "Indigo2 (Fullhouse)" :
"Indy (Guinness)",
((sysid & IOC_SYSID_BOARDREV) >> IOC_SYSID_BOARDREV_SHIFT));
bus_space_write_4(sc->sc_iot, sc->sc_ioh, IOC_RESET,
IOC_RESET_PARALLEL | IOC_RESET_PCKBC |
IOC_RESET_EISA | IOC_RESET_ISDN |
IOC_RESET_LED_GREEN );
bus_space_write_4(sc->sc_iot, sc->sc_ioh, IOC_WRITE,
IOC_WRITE_ENET_AUTO | IOC_WRITE_ENET_UTP |
IOC_WRITE_PC_UART2 | IOC_WRITE_PC_UART1);
#if 0
if (mach_subtype == MACH_SGI_IP22_GUINNESS) {
bus_space_write_4(sc->sc_iot, sc->sc_ioh, IOC_GCSEL, 0xff);
bus_space_write_4(sc->sc_iot, sc->sc_ioh, IOC_GCREG, 0xff);
}
#endif
#if defined(BLINK)
ioc_blink(sc);
#endif
#if defined(notyet)
config_search(self, NULL,
CFARGS(.search = ioc_search));
#endif
}
#if defined(notyet)
static int
ioc_print(void *aux, const char *pnp)
{
struct ioc_attach_args *iaa = aux;
if (pnp != 0)
return QUIET;
if (iaa->iaa_offset != IOCCF_OFFSET_DEFAULT)
aprint_normal(" offset 0x%lx", iaa->iaa_offset);
if (iaa->iaa_intr != IOCCF_INTR_DEFAULT)
aprint_normal(" intr %d", iaa->iaa_intr);
return UNCONF;
}
static int
ioc_search(device_t parent, cfdata_t cf, const int *ldesc, void *aux)
{
struct ioc_softc *sc = device_private(parent);
struct ioc_attach_args iaa;
int tryagain;
do {
iaa.iaa_offset = cf->cf_loc[IOCCF_OFFSET];
iaa.iaa_intr = cf->cf_loc[IOCCF_INTR];
iaa.iaa_st = normal_memt;
iaa.iaa_sh = sc->sc_ioh;
tryagain = 0;
if (config_probe(parent, cf, &iaa)) {
config_attach(parent, cf, &iaa, ioc_print, CFARGS_NONE);
tryagain = (cf->cf_fstate == FSTATE_STAR);
}
} while (tryagain);
return 0;
}
#endif
#if defined(BLINK)
static void
ioc_blink(void *self)
{
struct ioc_softc *sc = device_private(self);
register int s;
int value;
s = splhigh();
value = bus_space_read_4(sc->sc_iot, sc->sc_ioh, IOC_RESET) & 0xff;
value ^= IOC_RESET_LED_RED;
bus_space_write_4(sc->sc_iot, sc->sc_ioh, IOC_RESET, value);
splx(s);
s = (((averunnable.ldavg[0] + FSCALE) * hz) >> (FSHIFT + 1));
callout_reset(&ioc_blink_ch, s, ioc_blink, sc);
}
#endif