NetBSD/sys/arch/alpha/pci/dwlpx.c

238 lines
6.7 KiB
C
Raw Normal View History

/* $NetBSD: dwlpx.c,v 1.2 1997/03/12 21:09:52 cgd Exp $ */
/*
* Copyright (c) 1997 by Matthew Jacob
* NASA AMES Research Center.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice immediately at the beginning of the file, without modification,
* this list of conditions, and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <vm/vm.h>
#include <machine/autoconf.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <alpha/tlsb/tlsbreg.h>
#include <alpha/tlsb/kftxxvar.h>
#include <alpha/tlsb/kftxxreg.h>
#include <alpha/pci/dwlpxreg.h>
#include <alpha/pci/dwlpxvar.h>
#include <alpha/pci/pci_kn8ae.h>
#include <alpha/include/pmap.old.h>
#define KV(_addr) ((caddr_t)ALPHA_PHYS_TO_K0SEG((_addr)))
static int dwlpxmatch __P((struct device *, struct cfdata *, void *));
static void dwlpxattach __P((struct device *, struct device *, void *));
struct cfattach dwlpx_ca = {
sizeof(struct dwlpx_softc), dwlpxmatch, dwlpxattach
};
struct cfdriver dwlpx_cd = {
NULL, "dwlpx", DV_DULL,
};
static int dwlpxprint __P((void *, const char *));
static int
dwlpxprint(aux, pnp)
void *aux;
const char *pnp;
{
register struct pcibus_attach_args *pba = aux;
/* only PCIs can attach to DWLPX's; easy. */
if (pnp)
printf("%s at %s", pba->pba_busname, pnp);
printf(" bus %d", pba->pba_bus);
return (UNCONF);
}
static int
dwlpxmatch(parent, cf, aux)
struct device *parent;
struct cfdata *cf;
void *aux;
{
struct kft_dev_attach_args *ka = aux;
if (strcmp(ka->ka_name, dwlpx_cd.cd_name) != 0)
return (0);
return (1);
}
static void
dwlpxattach(parent, self, aux)
struct device *parent;
struct device *self;
void *aux;
{
static int once = 0;
struct dwlpx_softc *sc = (struct dwlpx_softc *)self;
struct kft_dev_attach_args *ka = aux;
struct pcibus_attach_args pba;
sc->dwlpx_node = ka->ka_node;
sc->dwlpx_dtype = ka->ka_dtype;
sc->dwlpx_hosenum = ka->ka_hosenum;
/*
* On reads, you get a fault if you read a nonexisted HPC.
* The internal KFTIA hose (hose 0) has only 2 HPCs.
*/
sc->dwlpx_nhpc = NHPC;
if (sc->dwlpx_hosenum == 0) {
if (TLDEV_DTYPE(sc->dwlpx_dtype) == TLDEV_DTYPE_KFTIA) {
sc->dwlpx_nhpc = NHPC - 1;
}
}
dwlpx_init(sc);
printf(", hose %d\n", sc->dwlpx_hosenum);
if (once == 0) {
/*
* Set up interrupts
*/
pci_kn8ae_pickintr(&sc->dwlpx_cc, 1);
#ifdef EVCNT_COUNTERS
evcnt_attach(self, "intr", kn8ae_intr_evcnt);
#endif
once++;
} else {
pci_kn8ae_pickintr(&sc->dwlpx_cc, 0);
}
/*
* Attach PCI bus
*/
pba.pba_busname = "pci";
pba.pba_iot = sc->dwlpx_cc.cc_iot;
pba.pba_memt = sc->dwlpx_cc.cc_memt;
pba.pba_pc = &sc->dwlpx_cc.cc_pc;
pba.pba_bus = 0;
config_found(self, &pba, dwlpxprint);
}
void
dwlpx_init(sc)
struct dwlpx_softc *sc;
{
int i;
struct dwlpx_config *ccp = &sc->dwlpx_cc;
if (ccp->cc_initted == 0) {
ccp->cc_iot = dwlpx_bus_io_init(ccp);
ccp->cc_memt = dwlpx_bus_mem_init(ccp);
}
dwlpx_pci_init(&ccp->cc_pc, ccp);
ccp->cc_sc = sc;
/*
* Establish a precalculated base for convenience's sake.
*/
ccp->cc_sysbase =
(((unsigned long)(sc->dwlpx_node - 4)) << 36) |
(((unsigned long) sc->dwlpx_hosenum) << 34) |
(1LL << 39);
/*
* Set up DMA windows for this DWLPX.
*
* Basically, we set up for a 1GB direct mapped window,
* starting from PCI address 0x40000000. And that's it.
*
* Do this even for all HPCs- even for the nonexistent
* one on hose zero of a KFTIA.
*/
for (i = 0; i < NHPC; i++) {
REGVAL(PCIA_WMASK_A(i) + ccp->cc_sysbase) = 0;
REGVAL(PCIA_TBASE_A(i) + ccp->cc_sysbase) = 0;
REGVAL(PCIA_WBASE_A(i) + ccp->cc_sysbase) = 0;
REGVAL(PCIA_WMASK_B(i) + ccp->cc_sysbase) = 0x3fff0000;
REGVAL(PCIA_TBASE_B(i) + ccp->cc_sysbase) = 0;
REGVAL(PCIA_WBASE_B(i) + ccp->cc_sysbase) = 0x40000002;
REGVAL(PCIA_WMASK_C(i) + ccp->cc_sysbase) = 0;
REGVAL(PCIA_TBASE_C(i) + ccp->cc_sysbase) = 0;
REGVAL(PCIA_WBASE_C(i) + ccp->cc_sysbase) = 0;
}
/* XXX XXX BEGIN XXX XXX */
{ /* XXX */
extern vm_offset_t alpha_XXX_dmamap_or; /* XXX */
alpha_XXX_dmamap_or = 0x40000000; /* XXX */
} /* XXX */
/* XXX XXX END XXX XXX */
/*
* Set up interrupt stuff for this DWLPX.
*
* Note that all PCI interrupt pins are disabled at this time.
*
* Do this even for all HPCs- even for the nonexistent
* one on hose zero of a KFTIA.
*/
for (i = 0; i < NHPC; i++) {
REGVAL(PCIA_IMASK(i) + ccp->cc_sysbase) = DWLPX_IMASK_DFLT;
REGVAL(PCIA_ERRVEC(i) + ccp->cc_sysbase) =
DWLPX_ERRVEC((sc->dwlpx_node - 4), sc->dwlpx_hosenum);
}
for (i = 0; i < DWLPX_MAXDEV; i++) {
u_int16_t vec;
int ss, hpc;
vec = DWLPX_MVEC((sc->dwlpx_node - 4), sc->dwlpx_hosenum, i);
ss = i;
if (i < 4) {
hpc = 0;
} else if (i < 8) {
ss -= 4;
hpc = 1;
} else {
ss -= 8;
hpc = 2;
}
REGVAL(PCIA_DEVVEC(hpc, ss, 1) + ccp->cc_sysbase) = vec;
REGVAL(PCIA_DEVVEC(hpc, ss, 2) + ccp->cc_sysbase) = vec;
REGVAL(PCIA_DEVVEC(hpc, ss, 3) + ccp->cc_sysbase) = vec;
REGVAL(PCIA_DEVVEC(hpc, ss, 4) + ccp->cc_sysbase) = vec;
}
/*
* Establish HAE values, as well as make sure of sanity elsewhere.
*/
for (i = 0; i < sc->dwlpx_nhpc; i++) {
u_int32_t ctl = REGVAL(PCIA_CTL(i) + ccp->cc_sysbase);
ctl &= 0x0fffffff;
ctl &= ~((0x1f << 14) | (0x1f << 9) | 0x3);
#if 0
ctl |= ((1 << 14) | (1 << 9));
#endif
REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) = ctl;
}
ccp->cc_initted = 1;
}