1996-11-25 06:55:46 +03:00
|
|
|
/* $NetBSD: cia.c,v 1.14 1996/11/25 03:55:46 cgd Exp $ */
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
/*
|
1996-04-12 10:07:05 +04:00
|
|
|
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
1995-11-23 05:33:17 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Chris G. Demetriou
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <vm/vm.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>
|
|
|
|
#if defined(DEC_KN20AA)
|
|
|
|
#include <alpha/pci/pci_kn20aa.h>
|
|
|
|
#endif
|
1996-11-12 00:08:10 +03:00
|
|
|
#if defined(DEC_EB164)
|
|
|
|
#include <alpha/pci/pci_eb164.h>
|
|
|
|
#endif
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
int ciamatch __P((struct device *, void *, void *));
|
|
|
|
void ciaattach __P((struct device *, struct device *, void *));
|
|
|
|
|
1996-04-13 04:24:30 +04:00
|
|
|
struct cfattach cia_ca = {
|
|
|
|
sizeof(struct cia_softc), ciamatch, ciaattach,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cfdriver cia_cd = {
|
|
|
|
NULL, "cia", DV_DULL,
|
1995-11-23 05:33:17 +03:00
|
|
|
};
|
|
|
|
|
1996-08-28 01:53:46 +04:00
|
|
|
static int ciaprint __P((void *, const char *pnp));
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
/* There can be only one. */
|
|
|
|
int ciafound;
|
|
|
|
struct cia_config cia_configuration;
|
|
|
|
|
|
|
|
int
|
|
|
|
ciamatch(parent, match, aux)
|
|
|
|
struct device *parent;
|
|
|
|
void *match, *aux;
|
|
|
|
{
|
|
|
|
struct confargs *ca = aux;
|
|
|
|
|
|
|
|
/* Make sure that we're looking for a CIA. */
|
1996-04-13 04:24:30 +04:00
|
|
|
if (strcmp(ca->ca_name, cia_cd.cd_name) != 0)
|
1995-11-23 05:33:17 +03:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
if (ciafound)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the chipset's function pointers.
|
|
|
|
*/
|
|
|
|
void
|
1996-11-25 06:55:46 +03:00
|
|
|
cia_init(ccp, mallocsafe)
|
1995-11-23 05:33:17 +03:00
|
|
|
struct cia_config *ccp;
|
1996-11-25 06:55:46 +03:00
|
|
|
int mallocsafe;
|
1995-11-23 05:33:17 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Can't set up SGMAP data here; can be called before malloc().
|
1996-11-25 06:55:46 +03:00
|
|
|
* XXX THIS COMMENT NO LONGER MAKES SENSE.
|
1995-11-23 05:33:17 +03:00
|
|
|
*/
|
|
|
|
|
1996-06-10 04:02:31 +04:00
|
|
|
ccp->cc_hae_mem = REGVAL(CIA_CSR_HAE_MEM);
|
|
|
|
ccp->cc_hae_io = REGVAL(CIA_CSR_HAE_IO);
|
1996-10-23 08:12:13 +04:00
|
|
|
|
1996-11-25 06:55:46 +03:00
|
|
|
if (!ccp->cc_initted) {
|
|
|
|
/* don't do these twice since they set up extents */
|
|
|
|
ccp->cc_iot = cia_bus_io_init(ccp);
|
|
|
|
ccp->cc_memt = cia_bus_mem_init(ccp);
|
|
|
|
}
|
|
|
|
ccp->cc_mallocsafe = mallocsafe;
|
|
|
|
|
|
|
|
cia_pci_init(&ccp->cc_pc, ccp);
|
|
|
|
|
1996-10-23 08:12:13 +04:00
|
|
|
/* 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 */
|
1996-11-25 06:55:46 +03:00
|
|
|
|
|
|
|
ccp->cc_initted = 1;
|
1995-11-23 05:33:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ciaattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct cia_softc *sc = (struct cia_softc *)self;
|
|
|
|
struct cia_config *ccp;
|
1996-04-13 04:24:30 +04:00
|
|
|
struct pcibus_attach_args pba;
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
/* note that we've attached the chipset; can't have 2 CIAs. */
|
|
|
|
ciafound = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set up the chipset's info; done once at console init time
|
|
|
|
* (maybe), but doesn't hurt to do twice.
|
|
|
|
*/
|
|
|
|
ccp = sc->sc_ccp = &cia_configuration;
|
1996-11-25 06:55:46 +03:00
|
|
|
cia_init(ccp, 1);
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
/* XXX print chipset information */
|
1996-10-13 06:59:55 +04:00
|
|
|
printf("\n");
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
switch (hwrpb->rpb_type) {
|
|
|
|
#if defined(DEC_KN20AA)
|
|
|
|
case ST_DEC_KN20AA:
|
1996-04-13 04:24:30 +04:00
|
|
|
pci_kn20aa_pickintr(ccp);
|
1995-11-23 05:33:17 +03:00
|
|
|
#ifdef EVCNT_COUNTERS
|
|
|
|
evcnt_attach(self, "intr", &kn20aa_intr_evcnt);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
#endif
|
1996-11-12 00:08:10 +03:00
|
|
|
|
|
|
|
#if defined(DEC_EB164)
|
|
|
|
case ST_EB164:
|
|
|
|
pci_eb164_pickintr(ccp);
|
|
|
|
#ifdef EVCNT_COUNTERS
|
|
|
|
evcnt_attach(self, "intr", &eb164_intr_evcnt);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
default:
|
|
|
|
panic("ciaattach: shouldn't be here, really...");
|
|
|
|
}
|
|
|
|
|
1996-04-13 04:24:30 +04:00
|
|
|
pba.pba_busname = "pci";
|
1996-10-23 08:12:13 +04:00
|
|
|
pba.pba_iot = ccp->cc_iot;
|
|
|
|
pba.pba_memt = ccp->cc_memt;
|
1996-04-13 04:24:30 +04:00
|
|
|
pba.pba_pc = &ccp->cc_pc;
|
|
|
|
pba.pba_bus = 0;
|
|
|
|
config_found(self, &pba, ciaprint);
|
1995-11-23 05:33:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ciaprint(aux, pnp)
|
|
|
|
void *aux;
|
1996-08-28 01:53:46 +04:00
|
|
|
const char *pnp;
|
1995-11-23 05:33:17 +03:00
|
|
|
{
|
1996-04-13 04:24:30 +04:00
|
|
|
register struct pcibus_attach_args *pba = aux;
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
/* only PCIs can attach to CIAs; easy. */
|
|
|
|
if (pnp)
|
1996-10-13 06:59:55 +04:00
|
|
|
printf("%s at %s", pba->pba_busname, pnp);
|
|
|
|
printf(" bus %d", pba->pba_bus);
|
1995-11-23 05:33:17 +03:00
|
|
|
return (UNCONF);
|
|
|
|
}
|