1996-04-12 05:31:43 +04:00
|
|
|
/* $NetBSD: tcds.c,v 1.8 1996/04/12 01:31:52 cgd Exp $ */
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Keith Bostic, 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/kernel.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
|
|
|
|
#include <machine/pte.h>
|
|
|
|
#include <machine/rpb.h>
|
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
#include <dev/tc/tcreg.h>
|
|
|
|
#include <dev/tc/tcvar.h>
|
|
|
|
#include <alpha/tc/tcdsreg.h>
|
|
|
|
#include <alpha/tc/tcdsvar.h>
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
struct tcds_softc {
|
|
|
|
struct device sc_dv;
|
1995-12-20 03:40:21 +03:00
|
|
|
tc_addr_t sc_base;
|
|
|
|
void *sc_cookie;
|
|
|
|
|
|
|
|
volatile u_int32_t *sc_cir;
|
|
|
|
volatile u_int32_t *sc_imer;
|
|
|
|
|
|
|
|
struct tcds_slotconfig sc_slots[2];
|
1995-02-14 02:06:39 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Definition of the driver for autoconfig. */
|
|
|
|
int tcdsmatch __P((struct device *, void *, void *));
|
|
|
|
void tcdsattach __P((struct device *, struct device *, void *));
|
|
|
|
int tcdsprint(void *, char *);
|
1996-03-17 04:03:02 +03:00
|
|
|
|
|
|
|
struct cfattach tcds_ca = {
|
1996-04-12 05:31:43 +04:00
|
|
|
sizeof(struct tcds_softc), tcdsmatch, tcdsattach,
|
1996-03-17 04:03:02 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct cfdriver tcds_cd = {
|
1996-04-12 05:31:43 +04:00
|
|
|
NULL, "tcds", DV_DULL,
|
1996-03-17 04:03:02 +03:00
|
|
|
};
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
/*static*/ int tcds_intr __P((void *));
|
|
|
|
/*static*/ int tcds_intrnull __P((void *));
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
int
|
1995-12-20 03:40:21 +03:00
|
|
|
tcdsmatch(parent, cfdata, aux)
|
1995-02-14 02:06:39 +03:00
|
|
|
struct device *parent;
|
1995-12-20 03:40:21 +03:00
|
|
|
void *cfdata;
|
|
|
|
void *aux;
|
1995-02-14 02:06:39 +03:00
|
|
|
{
|
1996-04-12 05:31:43 +04:00
|
|
|
struct tc_attach_args *ta = aux;
|
1995-12-20 03:40:21 +03:00
|
|
|
extern int cputype;
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
/* Make sure that we're looking for this type of device. */
|
1996-04-12 05:31:43 +04:00
|
|
|
if (strncmp("PMAZ-DS ", ta->ta_modname, TC_ROM_LLEN))
|
1995-02-14 02:06:39 +03:00
|
|
|
return (0);
|
1995-12-20 03:40:21 +03:00
|
|
|
/* PMAZ-FS? */
|
|
|
|
|
|
|
|
/* Check that it can actually exist. */
|
|
|
|
if ((cputype != ST_DEC_3000_500) && (cputype != ST_DEC_3000_300))
|
|
|
|
panic("tcdsmatch: how did we get here?");
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tcdsattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct tcds_softc *sc = (struct tcds_softc *)self;
|
1996-04-12 05:31:43 +04:00
|
|
|
struct tc_attach_args *ta = aux;
|
1995-12-20 03:40:21 +03:00
|
|
|
struct tcdsdev_attach_args tcdsdev;
|
|
|
|
struct tcds_slotconfig *slotc;
|
1995-02-14 02:06:39 +03:00
|
|
|
int i;
|
1995-03-08 03:38:44 +03:00
|
|
|
extern int cputype;
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
|
1996-04-12 05:31:43 +04:00
|
|
|
sc->sc_base = ta->ta_addr;
|
|
|
|
sc->sc_cookie = ta->ta_cookie;
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
sc->sc_cir = TCDS_REG(sc->sc_base, TCDS_CIR);
|
|
|
|
sc->sc_imer = TCDS_REG(sc->sc_base, TCDS_IMER);
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
tc_intr_establish(parent, sc->sc_cookie, TC_IPL_BIO, tcds_intr, sc);
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* IMER apparently has some random (or, not so random, but still
|
|
|
|
* not useful) bits set in it when the system boots. Clear it.
|
|
|
|
*/
|
1995-12-20 03:40:21 +03:00
|
|
|
*sc->sc_imer = 0;
|
1995-08-03 04:52:29 +04:00
|
|
|
wbflush();
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
/* XXX Initial contents of CIR? */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the per-slot defintions for later use.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* fill in common information first */
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
slotc = &sc->sc_slots[i];
|
|
|
|
|
|
|
|
bzero(slotc, sizeof *slotc); /* clear everything */
|
|
|
|
|
|
|
|
slotc->sc_slot = i;
|
|
|
|
slotc->sc_tcds = sc;
|
|
|
|
slotc->sc_esp = NULL;
|
|
|
|
slotc->sc_intrhand = tcds_intrnull;
|
|
|
|
slotc->sc_intrarg = (void *)(long)i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* information for slot 0 */
|
|
|
|
slotc = &sc->sc_slots[0];
|
|
|
|
slotc->sc_resetbits = TCDS_CIR_SCSI0_RESET;
|
|
|
|
slotc->sc_intrmaskbits =
|
|
|
|
TCDS_IMER_SCSI0_MASK | TCDS_IMER_SCSI0_ENB;
|
|
|
|
slotc->sc_intrbits = TCDS_CIR_SCSI0_INT;
|
|
|
|
slotc->sc_dmabits = TCDS_CIR_SCSI0_DMAENA;
|
|
|
|
slotc->sc_errorbits = 0; /* XXX */
|
|
|
|
slotc->sc_sda = TCDS_REG(sc->sc_base, TCDS_SCSI0_DMA_ADDR);
|
|
|
|
slotc->sc_dic = TCDS_REG(sc->sc_base, TCDS_SCSI0_DMA_INTR);
|
|
|
|
slotc->sc_dud0 = TCDS_REG(sc->sc_base, TCDS_SCSI0_DMA_DUD0);
|
|
|
|
slotc->sc_dud1 = TCDS_REG(sc->sc_base, TCDS_SCSI0_DMA_DUD1);
|
|
|
|
|
|
|
|
/* information for slot 1 */
|
|
|
|
slotc = &sc->sc_slots[1];
|
|
|
|
slotc->sc_resetbits = TCDS_CIR_SCSI1_RESET;
|
|
|
|
slotc->sc_intrmaskbits =
|
|
|
|
TCDS_IMER_SCSI1_MASK | TCDS_IMER_SCSI1_ENB;
|
|
|
|
slotc->sc_intrbits = TCDS_CIR_SCSI1_INT;
|
|
|
|
slotc->sc_dmabits = TCDS_CIR_SCSI1_DMAENA;
|
|
|
|
slotc->sc_errorbits = 0; /* XXX */
|
|
|
|
slotc->sc_sda = TCDS_REG(sc->sc_base, TCDS_SCSI1_DMA_ADDR);
|
|
|
|
slotc->sc_dic = TCDS_REG(sc->sc_base, TCDS_SCSI1_DMA_INTR);
|
|
|
|
slotc->sc_dud0 = TCDS_REG(sc->sc_base, TCDS_SCSI1_DMA_DUD0);
|
|
|
|
slotc->sc_dud1 = TCDS_REG(sc->sc_base, TCDS_SCSI1_DMA_DUD1);
|
|
|
|
|
1995-03-08 03:38:44 +03:00
|
|
|
/* find the hardware attached to the TCDS ASIC */
|
1995-12-20 03:40:21 +03:00
|
|
|
strncpy(tcdsdev.tcdsda_modname, "PMAZ-AA ", TC_ROM_LLEN);
|
|
|
|
tcdsdev.tcdsda_slot = 0;
|
|
|
|
tcdsdev.tcdsda_offset = 0;
|
|
|
|
tcdsdev.tcdsda_addr = (tc_addr_t)
|
|
|
|
TC_DENSE_TO_SPARSE(sc->sc_base + TCDS_SCSI0_OFFSET);
|
|
|
|
tcdsdev.tcdsda_cookie = (void *)(long)0;
|
|
|
|
tcdsdev.tcdsda_sc = &sc->sc_slots[0];
|
|
|
|
tcdsdev.tcdsda_id = 7; /* XXX */
|
|
|
|
tcdsdev.tcdsda_freq = 25000000; /* XXX */
|
|
|
|
|
|
|
|
tcds_scsi_reset(tcdsdev.tcdsda_sc);
|
|
|
|
|
|
|
|
config_found(self, &tcdsdev, tcdsprint);
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-03-08 03:38:44 +03:00
|
|
|
/* the second SCSI chip isn't present on the 3000/300 series. */
|
|
|
|
if (cputype != ST_DEC_3000_300) {
|
1995-12-20 03:40:21 +03:00
|
|
|
strncpy(tcdsdev.tcdsda_modname, "PMAZ-AA ",
|
|
|
|
TC_ROM_LLEN);
|
|
|
|
tcdsdev.tcdsda_slot = 1;
|
|
|
|
tcdsdev.tcdsda_offset = 0;
|
|
|
|
tcdsdev.tcdsda_addr = (tc_addr_t)
|
|
|
|
TC_DENSE_TO_SPARSE(sc->sc_base + TCDS_SCSI1_OFFSET);
|
|
|
|
tcdsdev.tcdsda_cookie = (void *)(long)1;
|
|
|
|
tcdsdev.tcdsda_sc = &sc->sc_slots[1];
|
|
|
|
tcdsdev.tcdsda_id = 7; /* XXX */
|
|
|
|
tcdsdev.tcdsda_freq = 25000000; /* XXX */
|
|
|
|
|
|
|
|
tcds_scsi_reset(tcdsdev.tcdsda_sc);
|
|
|
|
|
|
|
|
config_found(self, &tcdsdev, tcdsprint);
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tcdsprint(aux, pnp)
|
|
|
|
void *aux;
|
|
|
|
char *pnp;
|
|
|
|
{
|
1996-04-12 05:31:43 +04:00
|
|
|
struct tc_attach_args *ta = aux;
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
if (pnp)
|
1996-04-12 05:31:43 +04:00
|
|
|
printf("%s at %s", ta->ta_modname, pnp);
|
|
|
|
printf(" slot 0x%lx", ta->ta_slot);
|
1995-02-14 02:06:39 +03:00
|
|
|
return (UNCONF);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_intr_establish(tcds, cookie, level, func, arg)
|
|
|
|
struct device *tcds;
|
|
|
|
void *cookie, *arg;
|
|
|
|
tc_intrlevel_t level;
|
|
|
|
int (*func) __P((void *));
|
1995-02-14 02:06:39 +03:00
|
|
|
{
|
1995-12-20 03:40:21 +03:00
|
|
|
struct tcds_softc *sc = (struct tcds_softc *)tcds;
|
|
|
|
u_long slot;
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
slot = (u_long)cookie;
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
/* XXX check cookie. */
|
|
|
|
#endif
|
1995-03-08 03:38:44 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
if (sc->sc_slots[slot].sc_intrhand != tcds_intrnull)
|
|
|
|
panic("tcds_intr_establish: cookie %d twice", slot);
|
1995-03-08 03:38:44 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
sc->sc_slots[slot].sc_intrhand = func;
|
|
|
|
sc->sc_slots[slot].sc_intrarg = arg;
|
|
|
|
tcds_scsi_reset(&sc->sc_slots[slot]);
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_intr_disestablish(tcds, cookie)
|
|
|
|
struct device *tcds;
|
|
|
|
void *cookie;
|
1995-02-14 02:06:39 +03:00
|
|
|
{
|
1995-12-20 03:40:21 +03:00
|
|
|
struct tcds_softc *sc = (struct tcds_softc *)tcds;
|
|
|
|
u_long slot;
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
slot = (u_long)cookie;
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
/* XXX check cookie. */
|
|
|
|
#endif
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
if (sc->sc_slots[slot].sc_intrhand == tcds_intrnull)
|
|
|
|
panic("tcds_intr_disestablish: cookie %d missing intr",
|
|
|
|
slot);
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
sc->sc_slots[slot].sc_intrhand = tcds_intrnull;
|
|
|
|
sc->sc_slots[slot].sc_intrarg = (void *)slot;
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_dma_enable(&sc->sc_slots[slot], 0);
|
|
|
|
tcds_scsi_enable(&sc->sc_slots[slot], 0);
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tcds_intrnull(val)
|
|
|
|
void *val;
|
|
|
|
{
|
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
panic("tcds_intrnull: uncaught TCDS intr for cookie %ld\n",
|
|
|
|
(u_long)val);
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_scsi_reset(sc)
|
|
|
|
struct tcds_slotconfig *sc;
|
1995-02-14 02:06:39 +03:00
|
|
|
{
|
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_dma_enable(sc, 0);
|
|
|
|
tcds_scsi_enable(sc, 0);
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
TCDS_CIR_CLR(*sc->sc_tcds->sc_cir, sc->sc_resetbits);
|
|
|
|
wbflush();
|
|
|
|
DELAY(1);
|
|
|
|
TCDS_CIR_SET(*sc->sc_tcds->sc_cir, sc->sc_resetbits);
|
|
|
|
wbflush();
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_scsi_enable(sc, 1);
|
|
|
|
tcds_dma_enable(sc, 1);
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_scsi_enable(sc, on)
|
|
|
|
struct tcds_slotconfig *sc;
|
|
|
|
int on;
|
1995-02-14 02:06:39 +03:00
|
|
|
{
|
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
if (on)
|
|
|
|
*sc->sc_tcds->sc_imer |= sc->sc_intrmaskbits;
|
|
|
|
else
|
|
|
|
*sc->sc_tcds->sc_imer &= ~sc->sc_intrmaskbits;
|
|
|
|
wbflush();
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_dma_enable(sc, on)
|
|
|
|
struct tcds_slotconfig *sc;
|
|
|
|
int on;
|
1995-02-14 02:06:39 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
/* XXX Clear/set IOSLOT/PBS bits. */
|
1995-12-20 03:40:21 +03:00
|
|
|
if (on)
|
|
|
|
TCDS_CIR_SET(*sc->sc_tcds->sc_cir, sc->sc_dmabits);
|
|
|
|
else
|
|
|
|
TCDS_CIR_CLR(*sc->sc_tcds->sc_cir, sc->sc_dmabits);
|
|
|
|
wbflush();
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_scsi_isintr(sc, clear)
|
|
|
|
struct tcds_slotconfig *sc;
|
|
|
|
int clear;
|
1995-02-14 02:06:39 +03:00
|
|
|
{
|
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
if ((*sc->sc_tcds->sc_cir & sc->sc_intrbits) != 0) {
|
|
|
|
if (clear) {
|
|
|
|
TCDS_CIR_CLR(*sc->sc_tcds->sc_cir, sc->sc_intrbits);
|
|
|
|
wbflush();
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
1995-12-20 03:40:21 +03:00
|
|
|
return (1);
|
|
|
|
} else
|
|
|
|
return (0);
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-12-20 03:40:21 +03:00
|
|
|
tcds_scsi_iserr(sc)
|
|
|
|
struct tcds_slotconfig *sc;
|
1995-02-14 02:06:39 +03:00
|
|
|
{
|
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
return ((*sc->sc_tcds->sc_cir & sc->sc_errorbits) != 0);
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
tcds_intr(val)
|
|
|
|
void *val;
|
|
|
|
{
|
|
|
|
struct tcds_softc *sc;
|
|
|
|
u_int32_t ir;
|
|
|
|
|
|
|
|
sc = val;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* Copy and clear (gag!) the interrupts.
|
|
|
|
*/
|
1995-12-20 03:40:21 +03:00
|
|
|
ir = *sc->sc_cir;
|
1995-08-03 04:52:29 +04:00
|
|
|
wbflush();
|
1995-12-20 03:40:21 +03:00
|
|
|
TCDS_CIR_CLR(*sc->sc_cir, TCDS_CIR_ALLINTR);
|
1995-08-03 04:52:29 +04:00
|
|
|
wbflush();
|
1995-12-20 03:40:21 +03:00
|
|
|
tc_syncbus();
|
1995-08-03 04:52:29 +04:00
|
|
|
wbflush();
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-20 03:40:21 +03:00
|
|
|
#define CHECKINTR(slot) \
|
|
|
|
if (ir & sc->sc_slots[slot].sc_intrbits) { \
|
|
|
|
(void)(*sc->sc_slots[slot].sc_intrhand) \
|
|
|
|
(sc->sc_slots[slot].sc_intrarg); \
|
1995-02-14 02:06:39 +03:00
|
|
|
}
|
1995-12-20 03:40:21 +03:00
|
|
|
CHECKINTR(0);
|
|
|
|
CHECKINTR(1);
|
1995-02-14 02:06:39 +03:00
|
|
|
#undef CHECKINTR
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
/*
|
|
|
|
* Interrupts not currently handled, but would like to know if they
|
|
|
|
* occur.
|
|
|
|
*
|
|
|
|
* XXX
|
|
|
|
* Don't know if we have to set the interrupt mask and enable bits
|
|
|
|
* in the IMER to allow some of them to happen?
|
|
|
|
*/
|
|
|
|
#define PRINTINTR(msg, bits) \
|
|
|
|
if (ir & bits) \
|
|
|
|
printf(msg);
|
|
|
|
PRINTINTR("SCSI0 DREQ interrupt.\n", TCDS_CIR_SCSI0_DREQ);
|
|
|
|
PRINTINTR("SCSI1 DREQ interrupt.\n", TCDS_CIR_SCSI1_DREQ);
|
|
|
|
PRINTINTR("SCSI0 prefetch interrupt.\n", TCDS_CIR_SCSI0_PREFETCH);
|
|
|
|
PRINTINTR("SCSI1 prefetch interrupt.\n", TCDS_CIR_SCSI1_PREFETCH);
|
|
|
|
PRINTINTR("SCSI0 DMA error.\n", TCDS_CIR_SCSI0_DMA);
|
|
|
|
PRINTINTR("SCSI1 DMA error.\n", TCDS_CIR_SCSI1_DMA);
|
|
|
|
PRINTINTR("SCSI0 DB parity error.\n", TCDS_CIR_SCSI0_DB);
|
|
|
|
PRINTINTR("SCSI1 DB parity error.\n", TCDS_CIR_SCSI1_DB);
|
|
|
|
PRINTINTR("SCSI0 DMA buffer parity error.\n", TCDS_CIR_SCSI0_DMAB_PAR);
|
|
|
|
PRINTINTR("SCSI1 DMA buffer parity error.\n", TCDS_CIR_SCSI1_DMAB_PAR);
|
|
|
|
PRINTINTR("SCSI0 DMA read parity error.\n", TCDS_CIR_SCSI0_DMAR_PAR);
|
|
|
|
PRINTINTR("SCSI1 DMA read parity error.\n", TCDS_CIR_SCSI1_DMAR_PAR);
|
|
|
|
PRINTINTR("TC write parity error.\n", TCDS_CIR_TCIOW_PAR);
|
|
|
|
PRINTINTR("TC I/O address parity error.\n", TCDS_CIR_TCIOA_PAR);
|
|
|
|
#undef PRINTINTR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* The MACH source had this, with the comment:
|
|
|
|
* This is wrong, but machine keeps dying.
|
|
|
|
*/
|
|
|
|
DELAY(1);
|
|
|
|
}
|