#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pcmcom.c,v 1.45 2023/05/10 00:12:12 riastradh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/termios.h>
#include <sys/bus.h>
#include <sys/intr.h>
#include <dev/ic/comreg.h>
#include <dev/ic/comvar.h>
#include <dev/pcmcia/pcmciavar.h>
#include <dev/pcmcia/pcmciareg.h>
#include <dev/pcmcia/pcmciadevs.h>
#include "com.h"
#include "pcmcom.h"
#include "locators.h"
struct pcmcom_softc {
device_t sc_dev;
struct pcmcia_function *sc_pf;
void *sc_ih;
int sc_enabled_count;
#define NSLAVES 8
device_t sc_slaves[NSLAVES];
int sc_nslaves;
int sc_state;
#define PCMCOM_ATTACHED 3
};
struct pcmcom_attach_args {
bus_space_tag_t pca_iot;
bus_space_handle_t pca_ioh;
int pca_slave;
};
int pcmcom_match(device_t, cfdata_t, void *);
int pcmcom_validate_config(struct pcmcia_config_entry *);
void pcmcom_attach(device_t, device_t, void *);
int pcmcom_detach(device_t, int);
void pcmcom_childdet(device_t, device_t);
CFATTACH_DECL_NEW(pcmcom, sizeof(struct pcmcom_softc),
pcmcom_match, pcmcom_attach, pcmcom_detach, NULL);
const struct pcmcia_product pcmcom_products[] = {
{ PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_DUAL_RS232,
PCMCIA_CIS_INVALID },
#if 0
{ PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_DUAL_RS232_A,
PCMCIA_CIS_INVALID },
#endif
};
const size_t pcmcom_nproducts = __arraycount(pcmcom_products);
int pcmcom_print(void *, const char *);
int pcmcom_enable(struct pcmcom_softc *);
void pcmcom_disable(struct pcmcom_softc *);
int pcmcom_intr(void *);
int
pcmcom_match(device_t parent, cfdata_t cf, void *aux)
{
struct pcmcia_attach_args *pa = aux;
if (pcmcia_product_lookup(pa, pcmcom_products, pcmcom_nproducts,
sizeof(pcmcom_products[0]), NULL))
return (2);
return (0);
}
int
pcmcom_validate_config(struct pcmcia_config_entry *cfe)
{
if (cfe->iftype != PCMCIA_IFTYPE_IO ||
cfe->num_iospace < 1 || cfe->num_iospace > NSLAVES)
return (EINVAL);
return (0);
}
void
pcmcom_attach(device_t parent, device_t self, void *aux)
{
struct pcmcom_softc *sc = device_private(self);
struct pcmcia_attach_args *pa = aux;
struct pcmcia_config_entry *cfe;
int slave;
int error;
int locs[PCMCOMCF_NLOCS];
sc->sc_dev = self;
sc->sc_pf = pa->pf;
error = pcmcia_function_configure(pa->pf, pcmcom_validate_config);
if (error) {
aprint_error_dev(self, "configure failed, error=%d\n", error);
return;
}
cfe = pa->pf->cfe;
sc->sc_nslaves = cfe->num_iospace;
error = pcmcom_enable(sc);
if (error)
goto fail;
for (slave = 0; slave < sc->sc_nslaves; slave++) {
struct pcmcom_attach_args pca;
printf("%s: slave %d\n", device_xname(self), slave);
pca.pca_iot = cfe->iospace[slave].handle.iot;
pca.pca_ioh = cfe->iospace[slave].handle.ioh;
pca.pca_slave = slave;
locs[PCMCOMCF_SLAVE] = slave;
sc->sc_slaves[slave] =
config_found(sc->sc_dev, &pca, pcmcom_print,
CFARGS(.submatch = config_stdsubmatch,
.locators = locs));
}
pcmcom_disable(sc);
sc->sc_state = PCMCOM_ATTACHED;
return;
fail:
pcmcia_function_unconfigure(pa->pf);
}
void
pcmcom_childdet(device_t self, device_t child)
{
struct pcmcom_softc *sc = device_private(self);
int slave;
for (slave = sc->sc_nslaves - 1; slave >= 0; slave--) {
if (sc->sc_slaves[slave] == child)
sc->sc_slaves[slave] = NULL;
}
}
int
pcmcom_detach(device_t self, int flags)
{
struct pcmcom_softc *sc = device_private(self);
int error;
error = config_detach_children(self, flags);
if (error)
return error;
if (sc->sc_state != PCMCOM_ATTACHED)
return 0;
pcmcia_function_unconfigure(sc->sc_pf);
return 0;
}
int
pcmcom_print(void *aux, const char *pnp)
{
struct pcmcom_attach_args *pca = aux;
if (pnp)
aprint_normal("com at %s", pnp);
aprint_normal(" slave %d", pca->pca_slave);
return (UNCONF);
}
int
pcmcom_intr(void *arg)
{
#if NCOM > 0
struct pcmcom_softc *sc = arg;
int i, rval = 0;
if (sc->sc_enabled_count == 0)
return (0);
for (i = 0; i < sc->sc_nslaves; i++) {
if (sc->sc_slaves[i])
rval |= comintr(sc->sc_slaves[i]);
}
return (rval);
#else
return (0);
#endif
}
int
pcmcom_enable(struct pcmcom_softc *sc)
{
int error;
if (sc->sc_enabled_count++ != 0)
return (0);
sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_SERIAL,
pcmcom_intr, sc);
if (!sc->sc_ih)
return (EIO);
error = pcmcia_function_enable(sc->sc_pf);
if (error) {
pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
sc->sc_ih = 0;
}
return (error);
}
void
pcmcom_disable(struct pcmcom_softc *sc)
{
if (--sc->sc_enabled_count != 0)
return;
pcmcia_function_disable(sc->sc_pf);
pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
sc->sc_ih = 0;
}
#if NCOM_PCMCOM > 0
int com_pcmcom_match(device_t, cfdata_t , void *);
void com_pcmcom_attach(device_t, device_t, void *);
CFATTACH_DECL_NEW(com_pcmcom, sizeof(struct com_softc),
com_pcmcom_match, com_pcmcom_attach, com_detach, NULL);
int com_pcmcom_enable(struct com_softc *);
void com_pcmcom_disable(struct com_softc *);
int
com_pcmcom_match(device_t parent, cfdata_t cf, void *aux)
{
return (1);
}
void
com_pcmcom_attach(device_t parent, device_t self, void *aux)
{
struct com_softc *sc = device_private(self);
struct pcmcom_attach_args *pca = aux;
sc->sc_dev = self;
com_init_regs(&sc->sc_regs, pca->pca_iot, pca->pca_ioh, -1);
sc->enabled = 1;
sc->sc_frequency = COM_FREQ;
sc->enable = com_pcmcom_enable;
sc->disable = com_pcmcom_disable;
com_attach_subr(sc);
sc->enabled = 0;
}
int
com_pcmcom_enable(struct com_softc *sc)
{
return pcmcom_enable(device_private(device_parent(sc->sc_dev)));
}
void
com_pcmcom_disable(struct com_softc *sc)
{
pcmcom_disable(device_private(device_parent(sc->sc_dev)));
}
#endif