#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: com_puc.c,v 1.27 2021/03/25 05:33:59 rin Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/tty.h>
#include <sys/bus.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pucvar.h>
#include <dev/ic/comreg.h>
#include <dev/ic/comvar.h>
#include <dev/pci/cybervar.h>
struct com_puc_softc {
struct com_softc sc_com;
void *sc_ih;
};
static const char *serialtype[] = {
"Generic XT",
"16450",
"16550",
"16650",
"16750",
"16850",
"16950",
};
static int
com_puc_probe(device_t parent, cfdata_t match, void *aux)
{
struct puc_attach_args *aa = aux;
if (aa->type != PUC_PORT_TYPE_COM)
return (0);
return (1);
}
static void
com_puc_attach(device_t parent, device_t self, void *aux)
{
struct com_puc_softc *psc = device_private(self);
struct com_softc *sc = &psc->sc_com;
struct puc_attach_args *aa = aux;
const char *intrstr = NULL;
char intrbuf[PCI_INTRSTR_LEN];
unsigned int iface;
sc->sc_dev = self;
iface = PCI_INTERFACE(pci_conf_read(aa->pc, aa->tag, PCI_CLASS_REG));
aprint_naive(": Serial port");
if (iface < __arraycount(serialtype))
aprint_normal(" (%s-compatible)", serialtype[iface]);
aprint_normal(": ");
com_init_regs(&sc->sc_regs, aa->t, aa->h, aa->a);
sc->sc_frequency = aa->flags & PUC_COM_CLOCKMASK;
if (!aa->poll) {
intrstr = pci_intr_string(aa->pc, aa->intrhandle, intrbuf,
sizeof(intrbuf));
psc->sc_ih = pci_intr_establish_xname(aa->pc, aa->intrhandle,
IPL_SERIAL, comintr, sc, device_xname(self));
if (psc->sc_ih == NULL) {
aprint_error("couldn't establish interrupt");
if (intrstr != NULL)
aprint_error(" at %s", intrstr);
aprint_error("\n");
return;
}
} else {
sc->sc_poll_ticks = 1;
}
#if defined(amd64) || defined(i386)
if (aa->h < 0x10000)
aprint_normal("ioaddr 0x%04lx, ", aa->h);
#endif
if (!aa->poll)
aprint_normal("interrupting at %s\n", intrstr);
else
aprint_normal("polling\n");
if (aa->flags & (PUC_COM_SIIG10x|PUC_COM_SIIG20x)) {
int usrregno;
if (aa->flags & PUC_PORT_USR3) usrregno = 3;
else if (aa->flags & PUC_PORT_USR2) usrregno = 2;
else if (aa->flags & PUC_PORT_USR1) usrregno = 1;
else usrregno = 0;
if (aa->flags & PUC_COM_SIIG10x)
write_siig10x_usrreg(aa->pc, aa->tag, usrregno, 1);
else
write_siig20x_usrreg(aa->pc, aa->tag, usrregno, 1);
} else {
if (!pmf_device_register(self, NULL, com_resume))
aprint_error_dev(self,
"couldn't establish power handler\n");
}
aprint_normal("%s", device_xname(self));
com_attach_subr(sc);
}
CFATTACH_DECL_NEW(com_puc, sizeof(struct com_puc_softc),
com_puc_probe, com_puc_attach, NULL, NULL);