2000-05-29 16:05:41 +04:00
|
|
|
/* $NetBSD: cy_pci.c,v 1.9 2000/05/29 12:05:41 tsubai Exp $ */
|
1996-09-24 21:59:33 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* cy_pci.c
|
|
|
|
*
|
|
|
|
* Driver for Cyclades Cyclom-8/16/32 multiport serial cards
|
|
|
|
* (currently not tested with Cyclom-32 cards)
|
|
|
|
*
|
|
|
|
* Timo Rossi, 1996
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <machine/intr.h>
|
|
|
|
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcidevs.h>
|
|
|
|
|
|
|
|
#include <dev/ic/cd1400reg.h>
|
|
|
|
#include <dev/ic/cyreg.h>
|
|
|
|
#include <dev/ic/cyvar.h>
|
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
static int cy_match_pci __P((struct device *, struct cfdata *, void *));
|
1996-09-24 21:59:33 +04:00
|
|
|
static void cy_attach_pci __P((struct device *, struct device *, void *));
|
1997-04-13 23:55:09 +04:00
|
|
|
static int cy_map_pci __P((struct pci_attach_args *, bus_space_tag_t *,
|
|
|
|
bus_space_handle_t *, bus_size_t *, bus_space_tag_t *,
|
|
|
|
bus_space_handle_t *, bus_size_t *));
|
|
|
|
static void cy_unmap_pci __P((bus_space_tag_t, bus_space_handle_t,
|
|
|
|
bus_size_t, bus_space_tag_t, bus_space_handle_t, bus_size_t));
|
1996-09-24 21:59:33 +04:00
|
|
|
|
|
|
|
struct cfattach cy_pci_ca = {
|
1997-04-13 23:55:09 +04:00
|
|
|
sizeof(struct cy_softc), cy_match_pci, cy_attach_pci
|
1996-09-24 21:59:33 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
1997-04-13 23:55:09 +04:00
|
|
|
cy_map_pci(pap, iotp, iohp, iosizep, memtp, memhp, memsizep)
|
|
|
|
struct pci_attach_args *pap;
|
|
|
|
bus_space_tag_t *iotp, *memtp;
|
|
|
|
bus_space_handle_t *iohp, *memhp;
|
|
|
|
bus_size_t *iosizep, *memsizep;
|
1996-09-24 21:59:33 +04:00
|
|
|
{
|
1997-04-13 23:55:09 +04:00
|
|
|
int ioh_valid, memh_valid;
|
1997-06-17 09:44:22 +04:00
|
|
|
pcireg_t expected;
|
1997-04-13 23:55:09 +04:00
|
|
|
|
1997-06-17 09:44:22 +04:00
|
|
|
/* Map I/O (if possible). */
|
|
|
|
ioh_valid = (pci_mapreg_map(pap, 0x14, PCI_MAPREG_TYPE_IO, 0,
|
1997-04-13 23:55:09 +04:00
|
|
|
iotp, iohp, NULL, iosizep) == 0);
|
1997-06-17 09:44:22 +04:00
|
|
|
|
|
|
|
/* Map mem (if possible). Expected mem type depends on board ID. */
|
|
|
|
expected = PCI_MAPREG_TYPE_MEM;
|
2000-05-29 16:05:41 +04:00
|
|
|
switch (PCI_PRODUCT(pap->pa_id)) {
|
|
|
|
case PCI_PRODUCT_CYCLADES_CYCLOMY_1:
|
|
|
|
case PCI_PRODUCT_CYCLADES_CYCLOM4Y_1:
|
|
|
|
case PCI_PRODUCT_CYCLADES_CYCLOM8Y_1:
|
1997-06-17 09:44:22 +04:00
|
|
|
expected |= PCI_MAPREG_MEM_TYPE_32BIT_1M;
|
2000-05-29 16:05:41 +04:00
|
|
|
break;
|
|
|
|
default:
|
1997-06-17 09:44:22 +04:00
|
|
|
expected |= PCI_MAPREG_MEM_TYPE_32BIT;
|
2000-05-29 16:05:41 +04:00
|
|
|
}
|
1997-06-17 09:44:22 +04:00
|
|
|
memh_valid = (pci_mapreg_map(pap, 0x18, expected, 0,
|
1997-04-13 23:55:09 +04:00
|
|
|
memtp, memhp, NULL, memsizep) == 0);
|
|
|
|
|
|
|
|
if (ioh_valid && memh_valid)
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
if (ioh_valid)
|
|
|
|
bus_space_unmap(*iotp, *iohp, *iosizep);
|
|
|
|
if (memh_valid)
|
|
|
|
bus_space_unmap(*memtp, *memhp, *memsizep);
|
|
|
|
return (0);
|
1996-09-24 21:59:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1997-04-13 23:55:09 +04:00
|
|
|
cy_unmap_pci(iot, ioh, iosize, memt, memh, memsize)
|
|
|
|
bus_space_tag_t iot, memt;
|
|
|
|
bus_space_handle_t ioh, memh;
|
|
|
|
bus_size_t iosize, memsize;
|
1996-09-24 21:59:33 +04:00
|
|
|
|
|
|
|
{
|
1997-04-13 23:55:09 +04:00
|
|
|
bus_space_unmap(iot, ioh, iosize);
|
|
|
|
bus_space_unmap(memt, memh, memsize);
|
1996-09-24 21:59:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1997-04-13 23:55:09 +04:00
|
|
|
cy_match_pci(parent, match, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *match;
|
|
|
|
void *aux;
|
1996-09-24 21:59:33 +04:00
|
|
|
{
|
1997-04-13 23:55:09 +04:00
|
|
|
struct pci_attach_args *pap = aux;
|
|
|
|
bus_space_tag_t iot, memt;
|
|
|
|
bus_space_handle_t ioh, memh;
|
|
|
|
bus_size_t iosize, memsize;
|
|
|
|
|
|
|
|
if (PCI_VENDOR(pap->pa_id) != PCI_VENDOR_CYCLADES)
|
1996-09-24 21:59:33 +04:00
|
|
|
return 0;
|
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
switch (PCI_PRODUCT(pap->pa_id)) {
|
1996-09-24 21:59:33 +04:00
|
|
|
case PCI_PRODUCT_CYCLADES_CYCLOMY_1:
|
|
|
|
case PCI_PRODUCT_CYCLADES_CYCLOMY_2:
|
2000-05-29 16:05:41 +04:00
|
|
|
case PCI_PRODUCT_CYCLADES_CYCLOM4Y_1:
|
|
|
|
case PCI_PRODUCT_CYCLADES_CYCLOM4Y_2:
|
|
|
|
case PCI_PRODUCT_CYCLADES_CYCLOM8Y_1:
|
|
|
|
case PCI_PRODUCT_CYCLADES_CYCLOM8Y_2:
|
1996-09-24 21:59:33 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CY_DEBUG
|
1997-04-13 23:55:09 +04:00
|
|
|
printf("cy: Found Cyclades PCI device, id = 0x%x\n", pap->pa_id);
|
1996-09-24 21:59:33 +04:00
|
|
|
#endif
|
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
if (cy_map_pci(pap, &iot, &ioh, &iosize, &memt, &memh, &memsize) == 0)
|
|
|
|
return (0);
|
1996-09-24 21:59:33 +04:00
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
#if 0
|
|
|
|
XXX probably should do something like this, but this code is just
|
|
|
|
XXX too broken.
|
1996-09-24 21:59:33 +04:00
|
|
|
|
|
|
|
#ifdef CY_DEBUG
|
1996-10-13 05:37:04 +04:00
|
|
|
printf("%s: pci mapped mem 0x%lx (size %d), io 0x%x (size %d)\n",
|
1996-09-24 21:59:33 +04:00
|
|
|
sc.sc_dev.dv_xname, memaddr, memsize, iobase, iosize);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if ((rv = cy_find(&sc)) == 0)
|
1996-10-13 05:37:04 +04:00
|
|
|
printf("%s: PCI Cyclom card with no CD1400s!?\n",
|
1996-09-24 21:59:33 +04:00
|
|
|
sc.sc_dev.dv_xname);
|
1997-04-13 23:55:09 +04:00
|
|
|
#endif /* 0 */
|
1996-09-24 21:59:33 +04:00
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
cy_unmap_pci(iot, ioh, iosize, memt, memh, memsize);
|
|
|
|
return (1);
|
1996-09-24 21:59:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
cy_attach_pci(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct cy_softc *sc = (void *) self;
|
1997-04-13 23:55:09 +04:00
|
|
|
struct pci_attach_args *pap = aux;
|
1996-09-24 21:59:33 +04:00
|
|
|
pci_intr_handle_t intrhandle;
|
1997-04-13 23:55:09 +04:00
|
|
|
bus_space_tag_t iot, memt;
|
|
|
|
bus_space_handle_t ioh, memh;
|
|
|
|
bus_size_t iosize, memsize;
|
|
|
|
const char *intrstr;
|
2000-05-29 16:05:41 +04:00
|
|
|
int plx_ver;
|
1996-09-24 21:59:33 +04:00
|
|
|
|
|
|
|
sc->sc_bustype = CY_BUSTYPE_PCI;
|
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
if (cy_map_pci(pap, &iot, &ioh, &iosize, &memt, &memh,
|
|
|
|
&memsize) == 0) {
|
|
|
|
printf(": unable to map device registers\n");
|
|
|
|
return;
|
|
|
|
}
|
1996-09-24 21:59:33 +04:00
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
sc->sc_memt = memt;
|
|
|
|
sc->sc_bsh = memh;
|
1996-09-24 21:59:33 +04:00
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
if (cy_find(sc) == 0) {
|
|
|
|
printf(": cannot find CD1400s\n");
|
|
|
|
return;
|
|
|
|
}
|
1996-09-24 21:59:33 +04:00
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
/* Set up interrupt handler. */
|
|
|
|
if (pci_intr_map(pap->pa_pc, pap->pa_intrtag, pap->pa_intrpin,
|
|
|
|
pap->pa_intrline, &intrhandle) != 0) {
|
|
|
|
printf(": couldn't map PCI interrupt\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
intrstr = pci_intr_string(pap->pa_pc, intrhandle);
|
|
|
|
sc->sc_ih = pci_intr_establish(pap->pa_pc, intrhandle, IPL_TTY,
|
|
|
|
cy_intr, sc);
|
|
|
|
if (sc->sc_ih == NULL) {
|
1997-06-17 09:44:22 +04:00
|
|
|
printf(": couldn't establish interrupt");
|
1997-04-13 23:55:09 +04:00
|
|
|
if (intrstr != NULL)
|
|
|
|
printf(" at %s", intrstr);
|
|
|
|
printf("\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (intrstr != NULL)
|
|
|
|
printf(": interrupting at %s\n%s", intrstr, self->dv_xname);
|
1996-09-24 21:59:33 +04:00
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
/* attach the hardware */
|
|
|
|
cy_attach(parent, self, aux);
|
1996-09-24 21:59:33 +04:00
|
|
|
|
2000-05-29 16:05:41 +04:00
|
|
|
plx_ver = bus_space_read_1(memt, memh, CY_PLX_VER) & 0x0f;
|
|
|
|
|
1997-04-13 23:55:09 +04:00
|
|
|
/* Enable PCI card interrupts */
|
2000-05-29 16:05:41 +04:00
|
|
|
switch (plx_ver) {
|
|
|
|
case CY_PLX_9050:
|
|
|
|
bus_space_write_2(iot, ioh, CY_PCI_INTENA_9050,
|
|
|
|
bus_space_read_2(iot, ioh, CY_PCI_INTENA_9050) | 0x40);
|
|
|
|
break;
|
|
|
|
case CY_PLX_9060:
|
|
|
|
case CY_PLX_9080:
|
|
|
|
default:
|
|
|
|
bus_space_write_2(iot, ioh, CY_PCI_INTENA,
|
|
|
|
bus_space_read_2(iot, ioh, CY_PCI_INTENA) | 0x900);
|
|
|
|
}
|
1996-09-24 21:59:33 +04:00
|
|
|
}
|