1997-07-04 17:26:02 +04:00
|
|
|
/* $NetBSD: uda.c,v 1.25 1997/07/04 13:26:02 ragge Exp $ */
|
1994-08-03 00:18:46 +04:00
|
|
|
/*
|
1996-07-02 01:24:48 +04:00
|
|
|
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
|
1994-08-03 00:18:46 +04:00
|
|
|
* Copyright (c) 1988 Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Chris Torek.
|
|
|
|
*
|
|
|
|
* 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, 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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
*
|
1994-10-26 11:01:33 +03:00
|
|
|
* @(#)uda.c 7.32 (Berkeley) 2/13/91
|
1994-08-03 00:18:46 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
1996-07-11 23:33:50 +04:00
|
|
|
* UDA50 disk device driver
|
1994-08-03 00:18:46 +04:00
|
|
|
*/
|
|
|
|
|
1996-02-02 21:05:36 +03:00
|
|
|
#include <sys/param.h>
|
1996-07-02 01:24:48 +04:00
|
|
|
#include <sys/kernel.h>
|
1996-08-20 17:49:15 +04:00
|
|
|
#include <sys/systm.h>
|
1996-02-02 21:05:36 +03:00
|
|
|
|
|
|
|
#include <machine/sid.h>
|
1996-07-11 23:33:50 +04:00
|
|
|
#include <machine/pte.h>
|
1996-08-20 17:49:15 +04:00
|
|
|
#include <machine/cpu.h>
|
1996-02-02 21:05:36 +03:00
|
|
|
|
|
|
|
#include <vax/uba/ubavar.h>
|
1996-07-11 23:33:50 +04:00
|
|
|
#include <vax/uba/ubareg.h>
|
1996-02-02 21:05:36 +03:00
|
|
|
#include <vax/uba/udareg.h>
|
1995-09-01 02:24:39 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
#include <vax/mscp/mscp.h>
|
|
|
|
#include <vax/mscp/mscpvar.h>
|
|
|
|
#include <vax/mscp/mscpreg.h>
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-08-20 17:49:15 +04:00
|
|
|
/*
|
|
|
|
* Variants of SIMPLEQ macros for use with buf structs.
|
|
|
|
*/
|
|
|
|
#define BUFQ_INSERT_TAIL(head, elm) { \
|
|
|
|
(elm)->b_actf = NULL; \
|
|
|
|
*(head)->sqh_last = (elm); \
|
|
|
|
(head)->sqh_last = &(elm)->b_actf; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define BUFQ_REMOVE_HEAD(head, elm) { \
|
|
|
|
if (((head)->sqh_first = (elm)->b_actf) == NULL) \
|
|
|
|
(head)->sqh_last = &(head)->sqh_first; \
|
|
|
|
}
|
|
|
|
|
1994-08-03 00:18:46 +04:00
|
|
|
/*
|
|
|
|
* Software status, per controller.
|
|
|
|
*/
|
|
|
|
struct uda_softc {
|
1996-07-02 01:24:48 +04:00
|
|
|
struct device sc_dev; /* Autoconfig info */
|
|
|
|
struct uba_unit sc_unit; /* Struct common for UBA to communicate */
|
1996-08-20 17:49:15 +04:00
|
|
|
SIMPLEQ_HEAD(, buf) sc_bufq; /* bufs awaiting for resources */
|
1996-07-02 01:24:48 +04:00
|
|
|
struct mscp_pack *sc_uuda; /* Unibus address of uda struct */
|
|
|
|
struct mscp_pack sc_uda; /* Struct for uda communication */
|
|
|
|
struct udadevice *sc_udadev; /* pointer to ip/sa regs */
|
|
|
|
struct mscp *sc_mscp; /* Keep pointer to active mscp */
|
1994-08-03 00:18:46 +04:00
|
|
|
short sc_ipl; /* interrupt priority, Q-bus */
|
1996-07-02 01:24:48 +04:00
|
|
|
struct mscp_softc *sc_softc; /* MSCP info (per mscpvar.h) */
|
1994-08-03 00:18:46 +04:00
|
|
|
int sc_wticks; /* watchdog timer ticks */
|
1996-07-02 01:24:48 +04:00
|
|
|
};
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-08-20 17:49:15 +04:00
|
|
|
static int udamatch __P((struct device *, void *, void *));
|
|
|
|
static void udaattach __P((struct device *, struct device *, void *));
|
|
|
|
static void udareset __P((int));
|
|
|
|
static void mtcreset __P((int));
|
|
|
|
static void reset __P((struct uda_softc *));
|
|
|
|
static void udaintr __P((int));
|
|
|
|
static void mtcintr __P((int));
|
|
|
|
static void intr __P((struct uda_softc *));
|
|
|
|
int udaready __P((struct uba_unit *));
|
1996-07-02 01:24:48 +04:00
|
|
|
void udactlrdone __P((struct device *, int));
|
1996-08-28 01:53:46 +04:00
|
|
|
int udaprint __P((void *, const char *));
|
1996-07-02 01:24:48 +04:00
|
|
|
void udasaerror __P((struct device *, int));
|
1996-08-20 17:49:15 +04:00
|
|
|
int udago __P((struct device *, struct buf *));
|
|
|
|
|
|
|
|
struct cfdriver mtc_cd = {
|
|
|
|
NULL, "mtc", DV_DULL
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cfattach mtc_ca = {
|
|
|
|
sizeof(struct uda_softc), udamatch, udaattach
|
|
|
|
};
|
1995-12-13 22:02:47 +03:00
|
|
|
|
1996-03-18 01:56:15 +03:00
|
|
|
struct cfdriver uda_cd = {
|
|
|
|
NULL, "uda", DV_DULL
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cfattach uda_ca = {
|
1996-07-02 01:24:48 +04:00
|
|
|
sizeof(struct uda_softc), udamatch, udaattach
|
1995-12-13 22:02:47 +03:00
|
|
|
};
|
|
|
|
|
1994-08-03 00:18:46 +04:00
|
|
|
/*
|
|
|
|
* More driver definitions, for generic MSCP code.
|
|
|
|
*/
|
1996-07-02 01:24:48 +04:00
|
|
|
struct mscp_ctlr uda_mscp_ctlr = {
|
|
|
|
udactlrdone,
|
|
|
|
udago,
|
|
|
|
udasaerror,
|
|
|
|
};
|
1994-08-03 00:18:46 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Miscellaneous private variables.
|
|
|
|
*/
|
1996-07-02 01:24:48 +04:00
|
|
|
static int ivec_no;
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
int
|
|
|
|
udaprint(aux, name)
|
|
|
|
void *aux;
|
1996-08-28 01:53:46 +04:00
|
|
|
const char *name;
|
1996-07-02 01:24:48 +04:00
|
|
|
{
|
|
|
|
if (name)
|
1996-10-13 07:29:05 +04:00
|
|
|
printf("%s: mscpbus", name);
|
1996-07-02 01:24:48 +04:00
|
|
|
return UNCONF;
|
|
|
|
}
|
1994-08-03 00:18:46 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Poke at a supposed UDA50 to see if it is there.
|
|
|
|
*/
|
1995-12-13 22:02:47 +03:00
|
|
|
int
|
|
|
|
udamatch(parent, match, aux)
|
1996-07-02 01:24:48 +04:00
|
|
|
struct device *parent;
|
|
|
|
void *match, *aux;
|
1994-08-03 00:18:46 +04:00
|
|
|
{
|
1996-07-02 01:24:48 +04:00
|
|
|
struct uba_attach_args *ua = aux;
|
1996-08-20 17:49:15 +04:00
|
|
|
struct device *dev = match;
|
1996-07-11 23:33:50 +04:00
|
|
|
struct mscp_softc mi; /* Nice hack */
|
1996-07-02 01:24:48 +04:00
|
|
|
struct uba_softc *ubasc;
|
1996-08-20 17:49:15 +04:00
|
|
|
int tries;
|
|
|
|
#if QBA && notyet
|
1996-07-11 23:33:50 +04:00
|
|
|
extern volatile int rbr;
|
1994-08-03 00:18:46 +04:00
|
|
|
int s;
|
|
|
|
#endif
|
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
/* Get an interrupt vector. */
|
|
|
|
ubasc = (void *)parent;
|
|
|
|
ivec_no = ubasc->uh_lastiv - 4;
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-11 23:33:50 +04:00
|
|
|
mi.mi_sa = &((struct udadevice *)ua->ua_addr)->udasa;
|
|
|
|
mi.mi_ip = &((struct udadevice *)ua->ua_addr)->udaip;
|
1994-08-03 00:18:46 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialise the controller (partially). The UDA50 programmer's
|
|
|
|
* manual states that if initialisation fails, it should be retried
|
|
|
|
* at least once, but after a second failure the port should be
|
|
|
|
* considered `down'; it also mentions that the controller should
|
|
|
|
* initialise within ten seconds. Or so I hear; I have not seen
|
|
|
|
* this manual myself.
|
|
|
|
*/
|
1996-07-11 23:33:50 +04:00
|
|
|
#if 0
|
1994-08-03 00:18:46 +04:00
|
|
|
s = spl6();
|
|
|
|
#endif
|
|
|
|
tries = 0;
|
|
|
|
again:
|
1995-09-01 02:24:39 +04:00
|
|
|
|
1996-07-11 23:33:50 +04:00
|
|
|
*mi.mi_ip = 0;
|
|
|
|
if (mscp_waitstep(&mi, MP_STEP1, MP_STEP1) == 0)
|
|
|
|
return 0; /* Nothing here... */
|
1995-09-01 02:24:39 +04:00
|
|
|
|
1996-07-11 23:33:50 +04:00
|
|
|
*mi.mi_sa = MP_ERR | (NCMDL2 << 11) | (NRSPL2 << 8) | MP_IE |
|
1996-07-02 01:24:48 +04:00
|
|
|
(ivec_no >> 2);
|
1995-09-01 02:24:39 +04:00
|
|
|
|
1996-07-11 23:33:50 +04:00
|
|
|
if (mscp_waitstep(&mi, MP_STEP2, MP_STEP2) == 0) {
|
1996-10-13 07:29:05 +04:00
|
|
|
printf("udaprobe: init step2 no change. sa=%x\n", *mi.mi_sa);
|
1995-09-01 02:24:39 +04:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
1994-08-03 00:18:46 +04:00
|
|
|
/* should have interrupted by now */
|
1996-07-11 23:33:50 +04:00
|
|
|
#if 0
|
|
|
|
rbr = qbgetpri();
|
1996-07-02 01:24:48 +04:00
|
|
|
#endif
|
1996-08-20 17:49:15 +04:00
|
|
|
if (strcmp(dev->dv_cfdata->cf_driver->cd_name, mtc_cd.cd_name)) {
|
|
|
|
ua->ua_ivec = udaintr;
|
|
|
|
ua->ua_reset = udareset;
|
|
|
|
} else {
|
|
|
|
ua->ua_ivec = mtcintr;
|
|
|
|
ua->ua_reset = mtcreset;
|
|
|
|
}
|
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
return 1;
|
1994-08-03 00:18:46 +04:00
|
|
|
bad:
|
|
|
|
if (++tries < 2)
|
|
|
|
goto again;
|
1996-07-11 23:33:50 +04:00
|
|
|
#if 0
|
1994-08-03 00:18:46 +04:00
|
|
|
splx(s);
|
|
|
|
#endif
|
1996-07-02 01:24:48 +04:00
|
|
|
return 0;
|
1994-08-03 00:18:46 +04:00
|
|
|
}
|
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
void
|
|
|
|
udaattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
1994-08-03 00:18:46 +04:00
|
|
|
{
|
1996-07-02 01:24:48 +04:00
|
|
|
struct uda_softc *sc = (void *)self;
|
1996-07-20 23:00:22 +04:00
|
|
|
struct uba_attach_args *ua = aux;
|
1996-07-02 01:24:48 +04:00
|
|
|
struct uba_softc *uh = (void *)parent;
|
|
|
|
struct mscp_attach_args ma;
|
1996-08-20 17:49:15 +04:00
|
|
|
int ctlr, ubinfo;
|
1995-03-31 00:55:23 +04:00
|
|
|
|
1996-10-13 07:29:05 +04:00
|
|
|
printf("\n");
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
uh->uh_lastiv -= 4; /* remove dynamic interrupt vector */
|
1996-07-11 23:33:50 +04:00
|
|
|
#ifdef QBA
|
|
|
|
sc->sc_ipl = ua->ua_br;
|
|
|
|
#endif
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
ctlr = sc->sc_dev.dv_unit;
|
|
|
|
sc->sc_udadev = (struct udadevice *)ua->ua_addr;
|
1996-08-20 17:49:15 +04:00
|
|
|
SIMPLEQ_INIT(&sc->sc_bufq);
|
1994-08-03 00:18:46 +04:00
|
|
|
|
|
|
|
/*
|
1996-07-02 01:24:48 +04:00
|
|
|
* Fill in the uba_unit struct, so we can communicate with the uba.
|
1994-08-03 00:18:46 +04:00
|
|
|
*/
|
1996-07-02 01:24:48 +04:00
|
|
|
sc->sc_unit.uu_softc = sc; /* Backpointer to softc */
|
1996-08-20 17:49:15 +04:00
|
|
|
sc->sc_unit.uu_ready = udaready;/* go routine called from adapter */
|
1996-07-20 23:00:22 +04:00
|
|
|
sc->sc_unit.uu_keepbdp = vax_cputype == VAX_750 ? 1 : 0;
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-11 23:33:50 +04:00
|
|
|
/*
|
|
|
|
* Map the communication area and command and
|
|
|
|
* response packets into Unibus space.
|
|
|
|
*/
|
1996-08-20 17:49:15 +04:00
|
|
|
ubinfo = uballoc((struct uba_softc *)sc->sc_dev.dv_parent,
|
|
|
|
(caddr_t) &sc->sc_uda, sizeof (struct mscp_pack), UBA_CANTWAIT);
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
1996-07-11 23:33:50 +04:00
|
|
|
if (ubinfo == 0) {
|
1996-10-13 07:29:05 +04:00
|
|
|
printf("%s: uballoc map failed\n", sc->sc_dev.dv_xname);
|
1996-07-11 23:33:50 +04:00
|
|
|
return;
|
1996-07-02 01:24:48 +04:00
|
|
|
}
|
1996-08-20 17:49:15 +04:00
|
|
|
#endif
|
1996-07-11 23:33:50 +04:00
|
|
|
sc->sc_uuda = (struct mscp_pack *) UBAI_ADDR(ubinfo);
|
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
bzero(&sc->sc_uda, sizeof (struct mscp_pack));
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-08-20 17:49:15 +04:00
|
|
|
/*
|
|
|
|
* The only thing that differ UDA's and Tape ctlr's is
|
|
|
|
* their vcid. Beacuse there are no way to determine which
|
|
|
|
* ctlr type it is, we check what is generated and later
|
|
|
|
* set the correct vcid.
|
|
|
|
*/
|
|
|
|
ma.ma_type = (strcmp(self->dv_cfdata->cf_driver->cd_name,
|
|
|
|
mtc_cd.cd_name) ? MSCPBUS_DISK : MSCPBUS_TAPE);
|
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
ma.ma_mc = &uda_mscp_ctlr;
|
1996-08-20 17:49:15 +04:00
|
|
|
ma.ma_type |= MSCPBUS_UDA;
|
1996-07-02 01:24:48 +04:00
|
|
|
ma.ma_uuda = sc->sc_uuda;
|
|
|
|
ma.ma_uda = &sc->sc_uda;
|
1996-08-20 17:49:15 +04:00
|
|
|
ma.ma_softc = &sc->sc_softc;
|
1996-07-02 01:24:48 +04:00
|
|
|
ma.ma_ip = &sc->sc_udadev->udaip;
|
|
|
|
ma.ma_sa = ma.ma_sw = &sc->sc_udadev->udasa;
|
|
|
|
ma.ma_ivec = ivec_no;
|
1997-07-04 17:26:02 +04:00
|
|
|
ma.ma_ctlrnr = (ua->ua_iaddr == 0172150 ? 0 : 1); /* XXX */
|
1996-07-11 23:33:50 +04:00
|
|
|
ma.ma_adapnr = uh->uh_nr;
|
1996-07-02 01:24:48 +04:00
|
|
|
config_found(&sc->sc_dev, &ma, udaprint);
|
|
|
|
}
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-08-20 17:49:15 +04:00
|
|
|
/*
|
|
|
|
* Start a transfer if there are free resources available, otherwise
|
|
|
|
* let it go in udaready, forget it for now.
|
|
|
|
*/
|
1996-07-02 01:24:48 +04:00
|
|
|
int
|
1996-08-20 17:49:15 +04:00
|
|
|
udago(usc, bp)
|
1996-07-02 01:24:48 +04:00
|
|
|
struct device *usc;
|
1996-08-20 17:49:15 +04:00
|
|
|
struct buf *bp;
|
1996-07-02 01:24:48 +04:00
|
|
|
{
|
|
|
|
struct uda_softc *sc = (void *)usc;
|
1996-08-20 17:49:15 +04:00
|
|
|
struct uba_unit *uu = &sc->sc_unit;
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-08-20 17:49:15 +04:00
|
|
|
/*
|
|
|
|
* If we already are queued for resources, don't call ubaqueue
|
|
|
|
* again. (Then we would trash the wait queue). Just queue the
|
|
|
|
* buf and let the rest be done in udaready.
|
|
|
|
*/
|
|
|
|
if (sc->sc_bufq.sqh_first)
|
|
|
|
BUFQ_INSERT_TAIL(&sc->sc_bufq, bp)
|
|
|
|
else {
|
|
|
|
if (ubaqueue(uu, bp))
|
|
|
|
mscp_dgo(sc->sc_softc, (UBAI_ADDR(uu->uu_ubinfo) |
|
|
|
|
(UBAI_BDP(uu->uu_ubinfo) << 24)),uu->uu_ubinfo,bp);
|
|
|
|
else
|
|
|
|
BUFQ_INSERT_TAIL(&sc->sc_bufq, bp)
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
1996-07-02 01:24:48 +04:00
|
|
|
}
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
/*
|
1996-08-20 17:49:15 +04:00
|
|
|
* Called if we have been blocked for resources, and resources
|
|
|
|
* have been freed again. Return 1 if we could start all
|
|
|
|
* transfers again, 0 if we still are waiting.
|
1996-07-02 01:24:48 +04:00
|
|
|
*/
|
1996-08-20 17:49:15 +04:00
|
|
|
int
|
|
|
|
udaready(uu)
|
|
|
|
struct uba_unit *uu;
|
1996-07-02 01:24:48 +04:00
|
|
|
{
|
|
|
|
struct uda_softc *sc = uu->uu_softc;
|
1996-08-20 17:49:15 +04:00
|
|
|
struct buf *bp;
|
|
|
|
|
|
|
|
while ((bp = sc->sc_bufq.sqh_first)) {
|
|
|
|
if (ubaqueue(uu, bp)) {
|
|
|
|
BUFQ_REMOVE_HEAD(&sc->sc_bufq, bp);
|
|
|
|
mscp_dgo(sc->sc_softc, (UBAI_ADDR(uu->uu_ubinfo) |
|
|
|
|
(UBAI_BDP(uu->uu_ubinfo) << 24)),uu->uu_ubinfo,bp);
|
|
|
|
} else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
1996-07-02 01:24:48 +04:00
|
|
|
}
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
static struct saerr {
|
|
|
|
int code; /* error code (including UDA_ERR) */
|
|
|
|
char *desc; /* what it means: Efoo => foo error */
|
|
|
|
} saerr[] = {
|
|
|
|
{ 0100001, "Eunibus packet read" },
|
|
|
|
{ 0100002, "Eunibus packet write" },
|
|
|
|
{ 0100003, "EUDA ROM and RAM parity" },
|
|
|
|
{ 0100004, "EUDA RAM parity" },
|
|
|
|
{ 0100005, "EUDA ROM parity" },
|
|
|
|
{ 0100006, "Eunibus ring read" },
|
|
|
|
{ 0100007, "Eunibus ring write" },
|
|
|
|
{ 0100010, " unibus interrupt master failure" },
|
|
|
|
{ 0100011, "Ehost access timeout" },
|
|
|
|
{ 0100012, " host exceeded command limit" },
|
|
|
|
{ 0100013, " unibus bus master failure" },
|
|
|
|
{ 0100014, " DM XFC fatal error" },
|
|
|
|
{ 0100015, " hardware timeout of instruction loop" },
|
|
|
|
{ 0100016, " invalid virtual circuit id" },
|
|
|
|
{ 0100017, "Eunibus interrupt write" },
|
|
|
|
{ 0104000, "Efatal sequence" },
|
|
|
|
{ 0104040, " D proc ALU" },
|
|
|
|
{ 0104041, "ED proc control ROM parity" },
|
|
|
|
{ 0105102, "ED proc w/no BD#2 or RAM parity" },
|
|
|
|
{ 0105105, "ED proc RAM buffer" },
|
|
|
|
{ 0105152, "ED proc SDI" },
|
|
|
|
{ 0105153, "ED proc write mode wrap serdes" },
|
|
|
|
{ 0105154, "ED proc read mode serdes, RSGEN & ECC" },
|
|
|
|
{ 0106040, "EU proc ALU" },
|
|
|
|
{ 0106041, "EU proc control reg" },
|
|
|
|
{ 0106042, " U proc DFAIL/cntl ROM parity/BD #1 test CNT" },
|
|
|
|
{ 0106047, " U proc const PROM err w/D proc running SDI test" },
|
|
|
|
{ 0106055, " unexpected trap" },
|
|
|
|
{ 0106071, "EU proc const PROM" },
|
|
|
|
{ 0106072, "EU proc control ROM parity" },
|
|
|
|
{ 0106200, "Estep 1 data" },
|
|
|
|
{ 0107103, "EU proc RAM parity" },
|
|
|
|
{ 0107107, "EU proc RAM buffer" },
|
|
|
|
{ 0107115, " test count wrong (BD 12)" },
|
|
|
|
{ 0112300, "Estep 2" },
|
|
|
|
{ 0122240, "ENPR" },
|
|
|
|
{ 0122300, "Estep 3" },
|
|
|
|
{ 0142300, "Estep 4" },
|
|
|
|
{ 0, " unknown error code" }
|
|
|
|
};
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
/*
|
|
|
|
* If the error bit was set in the controller status register, gripe,
|
|
|
|
* then (optionally) reset the controller and requeue pending transfers.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
udasaerror(usc, doreset)
|
|
|
|
struct device *usc;
|
|
|
|
int doreset;
|
|
|
|
{
|
|
|
|
struct uda_softc *sc = (void *)usc;
|
|
|
|
register int code = sc->sc_udadev->udasa;
|
|
|
|
register struct saerr *e;
|
|
|
|
|
|
|
|
if ((code & MP_ERR) == 0)
|
|
|
|
return;
|
|
|
|
for (e = saerr; e->code; e++)
|
|
|
|
if (e->code == code)
|
|
|
|
break;
|
1996-10-13 07:29:05 +04:00
|
|
|
printf("%s: controller error, sa=0%o (%s%s)\n",
|
1996-07-02 01:24:48 +04:00
|
|
|
sc->sc_dev.dv_xname, code, e->desc + 1,
|
|
|
|
*e->desc == 'E' ? " error" : "");
|
1997-03-12 22:42:30 +03:00
|
|
|
#if 0 /* XXX we just avoid panic when autoconfig non-existent KFQSA devices */
|
1996-07-02 01:24:48 +04:00
|
|
|
if (doreset) {
|
|
|
|
mscp_requeue(sc->sc_softc);
|
|
|
|
/* (void) udainit(sc); XXX */
|
|
|
|
}
|
1997-03-12 22:42:30 +03:00
|
|
|
#endif
|
1994-08-03 00:18:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1996-07-02 01:24:48 +04:00
|
|
|
* Interrupt routine. Depending on the state of the controller,
|
|
|
|
* continue initialisation, or acknowledge command and response
|
|
|
|
* interrupts, and process responses.
|
1994-08-03 00:18:46 +04:00
|
|
|
*/
|
1996-08-20 17:49:15 +04:00
|
|
|
static void
|
1996-07-02 01:24:48 +04:00
|
|
|
udaintr(ctlr)
|
1996-08-20 17:49:15 +04:00
|
|
|
int ctlr;
|
|
|
|
{
|
|
|
|
intr(uda_cd.cd_devs[ctlr]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mtcintr(ctlr)
|
|
|
|
int ctlr;
|
|
|
|
{
|
|
|
|
intr(mtc_cd.cd_devs[ctlr]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
intr(sc)
|
|
|
|
struct uda_softc *sc;
|
1994-08-03 00:18:46 +04:00
|
|
|
{
|
1996-07-02 01:24:48 +04:00
|
|
|
volatile struct udadevice *udaddr = sc->sc_udadev;
|
|
|
|
struct uba_softc *uh;
|
|
|
|
struct mscp_pack *ud;
|
1995-03-31 00:55:23 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
#ifdef QBA
|
1996-07-20 23:00:22 +04:00
|
|
|
if(vax_cputype == VAX_TYP_UV2)
|
1996-07-02 01:24:48 +04:00
|
|
|
splx(sc->sc_ipl); /* Qbus interrupt protocol is odd */
|
|
|
|
#endif
|
|
|
|
sc->sc_wticks = 0; /* reset interrupt watchdog */
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
if (udaddr->udasa & MP_ERR) { /* ctlr fatal error */
|
|
|
|
udasaerror(&sc->sc_dev, 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ud = &sc->sc_uda;
|
1994-08-03 00:18:46 +04:00
|
|
|
/*
|
1996-07-02 01:24:48 +04:00
|
|
|
* Handle buffer purge requests.
|
1994-08-03 00:18:46 +04:00
|
|
|
*/
|
1996-07-02 01:24:48 +04:00
|
|
|
uh = (void *)sc->sc_dev.dv_parent;
|
|
|
|
if (ud->mp_ca.ca_bdp) {
|
1996-08-20 17:49:15 +04:00
|
|
|
if (uh->uh_ubapurge)
|
|
|
|
(*uh->uh_ubapurge)(uh, ud->mp_ca.ca_bdp);
|
1996-07-02 01:24:48 +04:00
|
|
|
ud->mp_ca.ca_bdp = 0;
|
|
|
|
udaddr->udasa = 0; /* signal purge complete */
|
1994-08-03 00:18:46 +04:00
|
|
|
}
|
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
mscp_intr(sc->sc_softc);
|
1994-08-03 00:18:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1996-07-02 01:24:48 +04:00
|
|
|
* A Unibus reset has occurred on UBA uban. Reinitialise the controller(s)
|
|
|
|
* on that Unibus, and requeue outstanding I/O.
|
1994-08-03 00:18:46 +04:00
|
|
|
*/
|
1996-07-02 01:24:48 +04:00
|
|
|
void
|
|
|
|
udareset(ctlr)
|
1994-08-03 00:18:46 +04:00
|
|
|
int ctlr;
|
|
|
|
{
|
1996-08-20 17:49:15 +04:00
|
|
|
reset(uda_cd.cd_devs[ctlr]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
mtcreset(ctlr)
|
|
|
|
int ctlr;
|
|
|
|
{
|
|
|
|
reset(mtc_cd.cd_devs[ctlr]);
|
|
|
|
}
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-08-20 17:49:15 +04:00
|
|
|
static void
|
|
|
|
reset(sc)
|
|
|
|
struct uda_softc *sc;
|
|
|
|
{
|
1996-10-13 07:29:05 +04:00
|
|
|
printf(" %s", sc->sc_dev.dv_xname);
|
1994-08-03 00:18:46 +04:00
|
|
|
|
|
|
|
/*
|
1996-07-02 01:24:48 +04:00
|
|
|
* Our BDP (if any) is gone; our command (if any) is
|
|
|
|
* flushed; the device is no longer mapped; and the
|
|
|
|
* UDA50 is not yet initialised.
|
1994-08-03 00:18:46 +04:00
|
|
|
*/
|
1996-07-02 01:24:48 +04:00
|
|
|
if (sc->sc_unit.uu_bdp) {
|
1996-10-13 07:29:05 +04:00
|
|
|
printf("<%d>", UBAI_BDP(sc->sc_unit.uu_bdp));
|
1996-07-02 01:24:48 +04:00
|
|
|
sc->sc_unit.uu_bdp = 0;
|
1994-08-03 00:18:46 +04:00
|
|
|
}
|
1996-07-02 01:24:48 +04:00
|
|
|
sc->sc_unit.uu_ubinfo = 0;
|
|
|
|
/* sc->sc_unit.uu_cmd = 0; XXX */
|
1995-09-01 02:24:39 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
/* reset queues and requeue pending transfers */
|
|
|
|
mscp_requeue(sc->sc_softc);
|
1994-08-03 00:18:46 +04:00
|
|
|
|
|
|
|
/*
|
1996-07-02 01:24:48 +04:00
|
|
|
* If it fails to initialise we will notice later and
|
|
|
|
* try again (and again...). Do not call udastart()
|
|
|
|
* here; it will be done after the controller finishes
|
|
|
|
* initialisation.
|
1994-08-03 00:18:46 +04:00
|
|
|
*/
|
1996-07-02 01:24:48 +04:00
|
|
|
/* XXX if (udainit(sc)) */
|
1996-10-13 07:29:05 +04:00
|
|
|
printf(" (hung)");
|
1994-08-03 00:18:46 +04:00
|
|
|
}
|
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
void
|
|
|
|
udactlrdone(usc, info)
|
|
|
|
struct device *usc;
|
|
|
|
int info;
|
1994-08-03 00:18:46 +04:00
|
|
|
{
|
1996-07-02 01:24:48 +04:00
|
|
|
struct uda_softc *sc = (void *)usc;
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1996-07-02 01:24:48 +04:00
|
|
|
/* XXX check if we shall release the BDP */
|
|
|
|
sc->sc_unit.uu_ubinfo = info;
|
|
|
|
ubadone(&sc->sc_unit);
|
1994-08-03 00:18:46 +04:00
|
|
|
}
|