#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: com_mainbus.c,v 1.22 2018/12/08 17:46:10 thorpej Exp $");
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/cpu.h>
#include <sys/device.h>
#include <sys/intr.h>
#include <sys/systm.h>
#include <sys/termios.h>
#include <machine/autoconf.h>
#include <dev/ic/comreg.h>
#include <dev/ic/comvar.h>
#include <cobalt/cobalt/console.h>
#include <cobalt/dev/com_mainbusvar.h>
struct com_mainbus_softc {
struct com_softc sc_com;
void *sc_ih;
};
#define COM_MAINBUS_FREQ (COM_FREQ * 10)
#define CONMODE ((TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8)
static int com_mainbus_probe(device_t, cfdata_t , void *);
static void com_mainbus_attach(device_t, device_t, void *);
CFATTACH_DECL_NEW(com_mainbus, sizeof(struct com_mainbus_softc),
com_mainbus_probe, com_mainbus_attach, NULL, NULL);
int
com_mainbus_probe(device_t parent, cfdata_t match, void *aux)
{
switch (cobalt_id) {
case COBALT_ID_RAQ:
case COBALT_ID_QUBE2:
case COBALT_ID_RAQ2:
return 1;
}
return 0;
}
void
com_mainbus_attach(device_t parent, device_t self, void *aux)
{
struct com_mainbus_softc *msc = device_private(self);
struct com_softc *sc = &msc->sc_com;
struct mainbus_attach_args *maa = aux;
bus_space_handle_t ioh;
sc->sc_dev = self;
if (!com_is_console(maa->ma_iot, maa->ma_addr, &ioh) &&
bus_space_map(maa->ma_iot, maa->ma_addr, COM_NPORTS, 0, &ioh)) {
aprint_error(": can't map i/o space\n");
return;
}
com_init_regs(&sc->sc_regs, maa->ma_iot, ioh, maa->ma_addr);
sc->sc_frequency = COM_MAINBUS_FREQ;
com_attach_subr(sc);
cpu_intr_establish(maa->ma_level, IPL_SERIAL, comintr, sc);
return;
}
void
com_mainbus_cnprobe(struct consdev *cn)
{
cn->cn_pri = (console_present != 0 && cobalt_id != COBALT_ID_QUBE2700)
? CN_NORMAL : CN_DEAD;
}
extern struct mips_bus_space cobalt_bs;
void
com_mainbus_cninit(struct consdev *cn)
{
comcnattach(&cobalt_bs, COM_BASE, 115200, COM_MAINBUS_FREQ, COM_TYPE_NORMAL,
CONMODE);
}