1998-06-05 06:15:38 +04:00
|
|
|
/* $NetBSD: cia.c,v 1.40 1998/06/05 02:15:38 thorpej 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.
|
|
|
|
*/
|
|
|
|
|
1997-09-02 17:24:48 +04:00
|
|
|
#include "opt_dec_eb164.h"
|
|
|
|
#include "opt_dec_kn20aa.h"
|
1998-06-05 06:13:41 +04:00
|
|
|
#include "opt_dec_550.h"
|
1997-09-02 17:24:48 +04:00
|
|
|
|
1997-04-08 03:39:37 +04:00
|
|
|
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
|
|
|
|
1998-06-05 06:15:38 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.40 1998/06/05 02:15:38 thorpej Exp $");
|
1997-04-07 06:01:16 +04:00
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
#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>
|
1997-04-07 03:32:18 +04:00
|
|
|
#ifdef DEC_KN20AA
|
1995-11-23 05:33:17 +03:00
|
|
|
#include <alpha/pci/pci_kn20aa.h>
|
|
|
|
#endif
|
1997-04-07 03:32:18 +04:00
|
|
|
#ifdef DEC_EB164
|
1996-11-12 00:08:10 +03:00
|
|
|
#include <alpha/pci/pci_eb164.h>
|
|
|
|
#endif
|
1998-06-05 06:13:41 +04:00
|
|
|
#ifdef DEC_550
|
|
|
|
#include <alpha/pci/pci_550.h>
|
|
|
|
#endif
|
1995-11-23 05:33:17 +03:00
|
|
|
|
1996-12-05 04:39:27 +03:00
|
|
|
int ciamatch __P((struct device *, struct cfdata *, void *));
|
1995-11-23 05:33:17 +03:00
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
1998-01-12 13:21:02 +03:00
|
|
|
extern struct cfdriver cia_cd;
|
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;
|
|
|
|
|
1998-06-05 01:34:45 +04:00
|
|
|
/*
|
|
|
|
* This determines if we attempt to use BWX for PCI bus and config space
|
|
|
|
* access. Some systems, notably with Pyxis, don't fare so well unless
|
|
|
|
* BWX is used.
|
|
|
|
*/
|
|
|
|
#ifndef CIA_USE_BWX
|
|
|
|
#define CIA_USE_BWX 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int cia_use_bwx = CIA_USE_BWX;
|
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
int
|
|
|
|
ciamatch(parent, match, aux)
|
|
|
|
struct device *parent;
|
1996-12-05 04:39:27 +03:00
|
|
|
struct cfdata *match;
|
|
|
|
void *aux;
|
1995-11-23 05:33:17 +03:00
|
|
|
{
|
1998-05-14 04:01:30 +04:00
|
|
|
struct mainbus_attach_args *ma = aux;
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
/* Make sure that we're looking for a CIA. */
|
1998-05-14 04:01:30 +04:00
|
|
|
if (strcmp(ma->ma_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
|
|
|
{
|
|
|
|
|
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);
|
1998-06-04 03:16:55 +04:00
|
|
|
ccp->cc_rev = REGVAL(CIA_CSR_REV) & REV_MASK;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Determine if we have a Pyxis. Only two systypes can
|
|
|
|
* have this: the EB164 systype (AlphaPC164LX and AlphaPC164SX)
|
|
|
|
* and the DEC_550 systype (Miata).
|
|
|
|
*/
|
|
|
|
if ((hwrpb->rpb_type == ST_EB164 &&
|
|
|
|
(hwrpb->rpb_variation & SV_ST_MASK) >= SV_ST_ALPHAPC164LX_400) ||
|
|
|
|
hwrpb->rpb_type == ST_DEC_550)
|
|
|
|
ccp->cc_flags |= CCF_ISPYXIS;
|
1997-09-17 05:34:18 +04:00
|
|
|
|
|
|
|
/*
|
1998-06-05 06:15:38 +04:00
|
|
|
* ALCOR/ALCOR2 Revisions >= 2 and Pyxis have the CNFG register.
|
1997-09-17 05:34:18 +04:00
|
|
|
*/
|
1998-06-05 06:15:38 +04:00
|
|
|
if (ccp->cc_rev >= 2 || (ccp->cc_flags & CCF_ISPYXIS) != 0)
|
1997-09-17 05:34:18 +04:00
|
|
|
ccp->cc_cnfg = REGVAL(CIA_CSR_CNFG);
|
|
|
|
else
|
|
|
|
ccp->cc_cnfg = 0;
|
1996-10-23 08:12:13 +04:00
|
|
|
|
1998-06-05 01:34:45 +04:00
|
|
|
/*
|
|
|
|
* Use BWX iff:
|
|
|
|
*
|
|
|
|
* - It hasn't been disbled by the user,
|
|
|
|
* - it's enabled in CNFG,
|
|
|
|
* - we're implementation version ev5,
|
|
|
|
* - BWX is enabled in the CPU's capabilities mask (yes,
|
|
|
|
* the bit is really cleared if the capability exists...)
|
|
|
|
*/
|
|
|
|
if (cia_use_bwx != 0 &&
|
|
|
|
(ccp->cc_cnfg & CNFG_BWEN) != 0 &&
|
|
|
|
alpha_implver() == ALPHA_IMPLVER_EV5 &&
|
1998-06-05 02:58:33 +04:00
|
|
|
alpha_amask(ALPHA_AMASK_BWX) == 0) {
|
|
|
|
u_int32_t ctrl;
|
|
|
|
|
1998-06-05 01:34:45 +04:00
|
|
|
ccp->cc_flags |= CCF_USEBWX;
|
|
|
|
|
1998-06-05 02:58:33 +04:00
|
|
|
/*
|
|
|
|
* For whatever reason, the firmware seems to enable PCI
|
|
|
|
* loopback mode if it also enables BWX. Make sure it's
|
|
|
|
* enabled if we have an old, buggy firmware rev.
|
|
|
|
*/
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-11-25 06:55:46 +03:00
|
|
|
if (!ccp->cc_initted) {
|
|
|
|
/* don't do these twice since they set up extents */
|
1998-06-05 01:34:45 +04:00
|
|
|
if (ccp->cc_flags & CCF_USEBWX) {
|
|
|
|
cia_bwx_bus_io_init(&ccp->cc_iot, ccp);
|
|
|
|
cia_bwx_bus_mem_init(&ccp->cc_memt, ccp);
|
|
|
|
} else {
|
|
|
|
cia_swiz_bus_io_init(&ccp->cc_iot, ccp);
|
|
|
|
cia_swiz_bus_mem_init(&ccp->cc_memt, ccp);
|
|
|
|
}
|
1996-11-25 06:55:46 +03:00
|
|
|
}
|
|
|
|
ccp->cc_mallocsafe = mallocsafe;
|
|
|
|
|
|
|
|
cia_pci_init(&ccp->cc_pc, ccp);
|
|
|
|
|
1997-06-07 03:54:24 +04:00
|
|
|
cia_dma_init(ccp);
|
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;
|
1997-10-27 04:08:42 +03:00
|
|
|
char bits[64];
|
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
|
1997-06-07 03:54:24 +04:00
|
|
|
* (maybe), but we must do it here as well to take care of things
|
|
|
|
* that need to use memory allocation.
|
1995-11-23 05:33:17 +03:00
|
|
|
*/
|
|
|
|
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
|
|
|
|
1998-06-04 03:16:55 +04:00
|
|
|
printf(": DECchip 2117x Core Logic Chipset (%s), pass %d\n",
|
|
|
|
(ccp->cc_flags & CCF_ISPYXIS) ? "Pyxis" : "ALCOR/ALCOR2",
|
|
|
|
ccp->cc_rev + 1);
|
1997-10-27 04:08:42 +03:00
|
|
|
if (ccp->cc_cnfg)
|
|
|
|
printf("%s: extended capabilities: %s\n", self->dv_xname,
|
|
|
|
bitmask_snprintf(ccp->cc_cnfg, CIA_CSR_CNFG_BITS,
|
|
|
|
bits, sizeof(bits)));
|
1998-06-05 01:34:45 +04:00
|
|
|
#if 1
|
|
|
|
if (ccp->cc_flags & CCF_USEBWX)
|
|
|
|
printf("%s: using BWX for PCI config and device access\n",
|
|
|
|
self->dv_xname);
|
|
|
|
#endif
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
switch (hwrpb->rpb_type) {
|
1997-04-07 03:32:18 +04:00
|
|
|
#ifdef DEC_KN20AA
|
1995-11-23 05:33:17 +03:00
|
|
|
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
|
|
|
|
1997-04-07 03:32:18 +04:00
|
|
|
#ifdef DEC_EB164
|
1996-11-12 00:08:10 +03:00
|
|
|
case ST_EB164:
|
|
|
|
pci_eb164_pickintr(ccp);
|
|
|
|
#ifdef EVCNT_COUNTERS
|
|
|
|
evcnt_attach(self, "intr", &eb164_intr_evcnt);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
1998-06-05 06:13:41 +04:00
|
|
|
#ifdef DEC_550
|
|
|
|
case ST_DEC_550:
|
|
|
|
pci_550_pickintr(ccp);
|
|
|
|
#ifdef EVCNT_COUNTERS
|
|
|
|
evcnt_attach(self, "intr", &dec_550_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";
|
1997-09-02 16:54:27 +04:00
|
|
|
pba.pba_iot = &ccp->cc_iot;
|
|
|
|
pba.pba_memt = &ccp->cc_memt;
|
1998-01-17 06:39:51 +03:00
|
|
|
pba.pba_dmat =
|
|
|
|
alphabus_dma_get_tag(&ccp->cc_dmat_direct, ALPHA_BUS_PCI);
|
1996-04-13 04:24:30 +04:00
|
|
|
pba.pba_pc = &ccp->cc_pc;
|
|
|
|
pba.pba_bus = 0;
|
1997-04-11 03:12:16 +04:00
|
|
|
pba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED;
|
1996-04-13 04:24:30 +04:00
|
|
|
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);
|
|
|
|
}
|