#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <uvm/uvm_extern.h>
#include <machine/autoconf.h>
#include <machine/rpb.h>
#include <dev/isa/isareg.h>
#include <dev/isa/isavar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <alpha/pci/ciareg.h>
#include <alpha/pci/ciavar.h>
#ifdef DEC_KN20AA
#include <alpha/pci/pci_kn20aa.h>
#endif
#ifdef DEC_EB164
#include <alpha/pci/pci_eb164.h>
#endif
#ifdef DEC_550
#include <alpha/pci/pci_550.h>
#endif
#ifdef DEC_1000A
#include <alpha/pci/pci_1000a.h>
#endif
#ifdef DEC_1000
#include <alpha/pci/pci_1000.h>
#endif
int ciamatch(struct device *, void *, void *);
void ciaattach(struct device *, struct device *, void *);
const struct cfattach cia_ca = {
sizeof(struct device), ciamatch, ciaattach,
};
struct cfdriver cia_cd = {
NULL, "cia", DV_DULL,
};
static int ciaprint(void *, const char *pnp);
int ciafound;
struct cia_config cia_configuration;
#ifndef CIA_PCI_USE_BWX
#define CIA_PCI_USE_BWX 1
#endif
#ifndef CIA_BUS_USE_BWX
#define CIA_BUS_USE_BWX 1
#endif
#ifndef CIA_PYXIS_FORCE_BWX
#define CIA_PYXIS_FORCE_BWX 1
#endif
int cia_pci_use_bwx = CIA_PCI_USE_BWX;
int cia_bus_use_bwx = CIA_BUS_USE_BWX;
int cia_pyxis_force_bwx = CIA_PYXIS_FORCE_BWX;
int
ciamatch(struct device *parent, void *match, void *aux)
{
struct mainbus_attach_args *ma = aux;
if (strcmp(ma->ma_name, cia_cd.cd_name) != 0)
return (0);
if (ciafound)
return (0);
return (1);
}
void
cia_init(struct cia_config *ccp, int mallocsafe)
{
int pci_use_bwx = cia_pci_use_bwx;
int bus_use_bwx = cia_bus_use_bwx;
ccp->cc_hae_mem = REGVAL(CIA_CSR_HAE_MEM);
ccp->cc_hae_io = REGVAL(CIA_CSR_HAE_IO);
ccp->cc_rev = REGVAL(CIA_CSR_REV) & REV_MASK;
if ((cputype == ST_EB164 &&
(hwrpb->rpb_variation & SV_ST_MASK) >= SV_ST_ALPHAPC164LX_400) ||
cputype == ST_DEC_550) {
ccp->cc_flags |= CCF_ISPYXIS;
if (cia_pyxis_force_bwx)
pci_use_bwx = bus_use_bwx = 1;
}
if (ccp->cc_rev >= 2 || (ccp->cc_flags & CCF_ISPYXIS) != 0)
ccp->cc_cnfg = REGVAL(CIA_CSR_CNFG);
else
ccp->cc_cnfg = 0;
if (!ccp->cc_initted) {
u_long amask = 0;
if (alpha_implver() >= ALPHA_IMPLVER_EV5)
amask =
(~alpha_amask(ALPHA_AMASK_ALL)) & ALPHA_AMASK_ALL;
if ((pci_use_bwx || bus_use_bwx) &&
(ccp->cc_cnfg & CNFG_BWEN) != 0 &&
(amask & ALPHA_AMASK_BWX) != 0) {
u_int32_t ctrl;
if (pci_use_bwx)
ccp->cc_flags |= CCF_PCI_USE_BWX;
if (bus_use_bwx)
ccp->cc_flags |= CCF_BUS_USE_BWX;
alpha_mb();
ctrl = REGVAL(CIA_CSR_CTRL);
if ((ctrl & CTRL_PCI_LOOP_EN) == 0) {
REGVAL(CIA_CSR_CTRL) = ctrl | CTRL_PCI_LOOP_EN;
alpha_mb();
}
}
if (ccp->cc_flags & CCF_BUS_USE_BWX) {
cia_bwx_bus_io_init(&ccp->cc_iot, ccp);
cia_bwx_bus_mem_init(&ccp->cc_memt, ccp);
} else {
cia_bus_io_init(&ccp->cc_iot, ccp);
cia_bus_mem_init(&ccp->cc_memt, ccp);
}
}
ccp->cc_mallocsafe = mallocsafe;
cia_pci_init(&ccp->cc_pc, ccp);
alpha_pci_chipset = &ccp->cc_pc;
alpha_pci_chipset->pc_name = "cia";
alpha_pci_chipset->pc_dense = CIA_PCI_DENSE;
alpha_pci_chipset->pc_hae_mask = 7L << 29;
if (ccp->cc_flags & CCF_BUS_USE_BWX) {
alpha_pci_chipset->pc_mem = CIA_EV56_BWMEM;
alpha_pci_chipset->pc_ports = CIA_EV56_BWIO;
alpha_pci_chipset->pc_bwx = 1;
} else {
alpha_pci_chipset->pc_mem = CIA_PCI_SMEM1;
alpha_pci_chipset->pc_ports = CIA_PCI_SIO1;
alpha_pci_chipset->pc_bwx = 0;
}
ccp->cc_initted = 1;
}
void
ciaattach(struct device *parent, struct device *self, void *aux)
{
struct cia_config *ccp;
struct pcibus_attach_args pba;
const char *name;
int pass;
ciafound = 1;
ccp = &cia_configuration;
cia_init(ccp, 1);
if (ccp->cc_flags & CCF_ISPYXIS) {
name = "Pyxis";
pass = ccp->cc_rev;
} else {
name = "ALCOR/ALCOR2";
pass = ccp->cc_rev + 1;
}
printf(": DECchip 2117x Core Logic Chipset (%s), pass %d\n",
name, pass);
if (ccp->cc_cnfg)
printf("%s: extended capabilities: %b\n", self->dv_xname,
ccp->cc_cnfg, CIA_CSR_CNFG_BITS);
switch (ccp->cc_flags & (CCF_PCI_USE_BWX|CCF_BUS_USE_BWX)) {
case CCF_PCI_USE_BWX|CCF_BUS_USE_BWX:
name = "PCI config and bus";
break;
case CCF_PCI_USE_BWX:
name = "PCI config";
break;
case CCF_BUS_USE_BWX:
name = "bus";
break;
default:
name = NULL;
break;
}
if (name != NULL)
printf("%s: using BWX for %s access\n", self->dv_xname, name);
#ifdef DEC_550
if (cputype == ST_DEC_550 &&
(hwrpb->rpb_variation & SV_ST_MASK) < SV_ST_MIATA_1_5) {
u_int32_t ctrl;
printf("%s: WARNING: Pyxis pass 1 DMA bug; no bets...\n",
self->dv_xname);
ccp->cc_flags |= CCF_PYXISBUG;
alpha_mb();
ctrl = REGVAL(CIA_CSR_CTRL);
ctrl &= ~(CTRL_RD_TYPE|CTRL_RL_TYPE|CTRL_RM_TYPE);
REGVAL(CIA_CSR_CTRL) = ctrl;
alpha_mb();
}
#endif
cia_dma_init(ccp);
switch (cputype) {
#ifdef DEC_KN20AA
case ST_DEC_KN20AA:
pci_kn20aa_pickintr(ccp);
break;
#endif
#ifdef DEC_EB164
case ST_EB164:
pci_eb164_pickintr(ccp);
break;
#endif
#ifdef DEC_550
case ST_DEC_550:
pci_550_pickintr(ccp);
break;
#endif
#ifdef DEC_1000A
case ST_DEC_1000A:
pci_1000a_pickintr(ccp, &ccp->cc_iot, &ccp->cc_memt,
&ccp->cc_pc);
break;
#endif
#ifdef DEC_1000
case ST_DEC_1000:
pci_1000_pickintr(ccp, &ccp->cc_iot, &ccp->cc_memt,
&ccp->cc_pc);
break;
#endif
default:
panic("ciaattach: shouldn't be here, really...");
}
bzero(&pba, sizeof(pba));
pba.pba_busname = "pci";
pba.pba_iot = &ccp->cc_iot;
pba.pba_memt = &ccp->cc_memt;
pba.pba_dmat =
alphabus_dma_get_tag(&ccp->cc_dmat_direct, ALPHA_BUS_PCI);
pba.pba_pc = &ccp->cc_pc;
pba.pba_domain = pci_ndomains++;
pba.pba_bus = 0;
#ifdef notyet
pba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED;
if ((ccp->cc_flags & CCF_PYXISBUG) == 0)
pba.pba_flags |= PCI_FLAGS_MRL_OKAY | PCI_FLAGS_MRM_OKAY |
PCI_FLAGS_MWI_OKAY;
#endif
config_found(self, &pba, ciaprint);
}
static int
ciaprint(void *aux, const char *pnp)
{
register struct pcibus_attach_args *pba = aux;
if (pnp)
printf("%s at %s", pba->pba_busname, pnp);
printf(" bus %d", pba->pba_bus);
return (UNCONF);
}
void
cia_pyxis_intr_enable(int irq, int onoff)
{
u_int64_t imask;
int s;
#if 0
printf("cia_pyxis_intr_enable: %s %d\n",
onoff ? "enabling" : "disabling", irq);
#endif
s = splhigh();
alpha_mb();
imask = REGVAL64(PYXIS_INT_MASK);
if (onoff)
imask |= (1UL << irq);
else
imask &= ~(1UL << irq);
REGVAL64(PYXIS_INT_MASK) = imask;
alpha_mb();
splx(s);
}