Support for VAX8200; the ka820/ka825 CPUs.

This commit is contained in:
ragge 1996-07-20 17:33:06 +00:00
parent d69119311f
commit 5b0992267c
2 changed files with 614 additions and 0 deletions

View File

@ -0,0 +1,148 @@
/* $NetBSD: ka820.h,v 1.1 1996/07/20 17:33:09 ragge Exp $ */
/*
* 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.
*
* @(#)ka820.h 7.3 (Berkeley) 6/28/90
*/
/*
* Definitions specific to the ka820 cpu.
*/
/*
* Device addresses.
*/
#define KA820_PORTADDR 0x20088000 /* port controller */
#define KA820_BRAMADDR 0x20090000 /* boot ram */
#define KA820_EEPROMADDR 0x20098000 /* eeprom */
#define KA820_RX50ADDR 0x200b0000 /* rcx50 */
#define KA820_CLOCKADDR 0x200b8000 /* watch chip */
/*
* Sizes. The port controller, RCX50, and watch chip are all one page.
*/
#define KA820_BRPAGES 16 /* 8K */
#define KA820_EEPAGES 64 /* 32K */
/* port controller CSR bit values */
#define KA820PORT_RSTHALT 0x80000000 /* restart halt */
#define KA820PORT_LCONS 0x40000000 /* logical console */
#define KA820PORT_LCONSEN 0x20000000 /* logical console enable */
#define KA820PORT_BIRESET 0x10000000 /* BI reset */
#define KA820PORT_BISTF 0x08000000 /* ??? */
#define KA820PORT_ENBAPT 0x04000000 /* ??? */
#define KA820PORT_STPASS 0x02000000 /* self test pass */
#define KA820PORT_RUN 0x01000000 /* run */
#define KA820PORT_WWPE 0x00800000 /* ??? parity even? */
#define KA820PORT_EVLCK 0x00400000 /* event lock */
#define KA820PORT_WMEM 0x00200000 /* write mem */
#define KA820PORT_EV4 0x00100000 /* event 4 */
#define KA820PORT_EV3 0x00080000 /* event 3 */
#define KA820PORT_EV2 0x00040000 /* event 2 */
#define KA820PORT_EV1 0x00020000 /* event 1 */
#define KA820PORT_EV0 0x00010000 /* event 0 */
#define KA820PORT_WWPO 0x00008000 /* ??? parity odd? */
#define KA820PORT_PERH 0x00004000 /* parity error H */
#define KA820PORT_ENBPIPE 0x00002000 /* enable? pipe */
#define KA820PORT_TIMEOUT 0x00001000 /* timeout */
#define KA820PORT_RSVD 0x00000800 /* reserved */
#define KA820PORT_CONSEN 0x00000400 /* console interrupt enable */
#define KA820PORT_CONSCLR 0x00000200 /* clear console interrupt */
#define KA820PORT_CONSINTR 0x00000100 /* console interrupt req */
#define KA820PORT_RXIE 0x00000080 /* RX50 interrupt enable */
#define KA820PORT_RXCLR 0x00000040 /* clear RX50 interrupt */
#define KA820PORT_RXIRQ 0x00000020 /* RX50 interrupt request */
#define KA820PORT_IPCLR 0x00000010 /* clear IP interrupt */
#define KA820PORT_IPINTR 0x00000008 /* IP interrupt request */
#define KA820PORT_CRDEN 0x00000004 /* enable CRD interrupts */
#define KA820PORT_CRDCLR 0x00000002 /* clear CRD interrupt */
#define KA820PORT_CRDINTR 0x00000001 /* CRD interrupt request */
/* what the heck */
#define KA820PORT_BITS \
"\20\40RSTHALT\37LCONS\36LCONSEN\35BIRESET\34BISTF\33ENBAPT\32STPASS\31RUN\
\30WWPE\27EVLCK\26WMEM\25EV4\24EV3\23EV2\22EV1\21EV\20WWPO\17PERH\16ENBPIPE\
\15TIMEOUT\13CONSEN\12CONSCLR\11CONSINTR\10RXIE\7RXCLR\6RXIRQ\5IPCLR\4IPINTR\
\3CRDEN\2CLRCLR\1CRDINTR"
/* clock CSR bit values, per csr */
#define KA820CLK_0_BUSY 0x01 /* busy (time changing) */
#define KA820CLK_1_GO 0x0c /* run */
#define KA820CLK_1_SET 0x0d /* set the time */
#define KA820CLK_3_VALID 0x01 /* clock is valid */
#ifndef LOCORE
struct ka820port {
u_long csr;
/* that seems to be all.... */
};
struct ka820clock {
u_char sec;
u_char pad0;
u_char secalrm;
u_char pad1;
u_char min;
u_char pad2;
u_char minalrm;
u_char pad3;
u_char hr;
u_char pad4;
u_char hralrm;
u_char pad5;
u_char dayofwk;
u_char pad6;
u_char day;
u_char pad7;
u_char mon;
u_char pad8;
u_char yr;
u_char pad9;
u_short csr0;
u_short csr1;
u_short csr2;
u_short csr3;
};
/*
* Prototypes.
*/
void ka820_conf __P((struct device *, struct device *, void *));
void ka820_memerr __P((void));
int ka820_mchk __P((caddr_t));
void ka820_steal_pages __P((void));
int ka820_clkread __P((time_t));
void ka820_clkwrite __P((void));
#endif

466
sys/arch/vax/vax/ka820.c Normal file
View File

@ -0,0 +1,466 @@
/* $NetBSD: ka820.c,v 1.1 1996/07/20 17:33:06 ragge Exp $ */
/*
* 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.
*
* @(#)ka820.c 7.4 (Berkeley) 12/16/90
*/
/*
* KA820 specific CPU code. (Note that the VAX8200 uses a KA820, not
* a KA8200. Sigh.)
*/
#include <sys/param.h>
#include <sys/time.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/ka820.h>
#include <machine/cpu.h>
#include <machine/mtpr.h>
#include <machine/nexus.h>
#include <machine/clock.h>
#include <machine/scb.h>
#include <arch/vax/bi/bireg.h>
#include <arch/vax/bi/bivar.h>
struct ka820clock *ka820clock_ptr;
struct ka820port *ka820port_ptr;
struct rx50device *rx50device_ptr;
void *bi_nodebase; /* virtual base address for all possible bi nodes */
static int ka820_match __P((struct device *, void *, void *));
static void ka820_attach __P((struct device *, struct device *, void*));
struct cfattach cpu_bi_ca = {
sizeof(struct device), ka820_match, ka820_attach
};
#ifdef notyet
extern struct pte BRAMmap[];
extern struct pte EEPROMmap[];
char bootram[KA820_BRPAGES * NBPG];
char eeprom[KA820_EEPAGES * NBPG];
#endif
struct ivec_dsp nollhanterare;
static void
hant(arg)
int arg;
{
if (cold == 0)
printf("stray interrupt from vaxbi bus\n");
}
void
ka820_steal_pages()
{
extern vm_offset_t avail_start, virtual_avail, avail_end;
extern struct ivec_dsp idsptch;
struct scb *sb;
int junk, i, j;
/*
* On the ka820, we map in the port CSR, the clock registers
* and the console RX50 register. We also map in the BI nodespace
* for all possible (16) nodes. It would only be needed with
* the existent nodes, but we only loose 1K so...
*/
sb = (void *)avail_start;
MAPPHYS(junk, j, VM_PROT_READ|VM_PROT_WRITE); /* SCB & vectors */
MAPVIRT(ka820clock_ptr, 1);
pmap_map((vm_offset_t)ka820clock_ptr, (vm_offset_t)KA820_CLOCKADDR,
KA820_CLOCKADDR + NBPG, VM_PROT_READ|VM_PROT_WRITE);
MAPVIRT(ka820port_ptr, 1);
pmap_map((vm_offset_t)ka820port_ptr, (vm_offset_t)KA820_PORTADDR,
KA820_PORTADDR + NBPG, VM_PROT_READ|VM_PROT_WRITE);
MAPVIRT(rx50device_ptr, 1);
pmap_map((vm_offset_t)rx50device_ptr, (vm_offset_t)KA820_RX50ADDR,
KA820_RX50ADDR + NBPG, VM_PROT_READ|VM_PROT_WRITE);
MAPVIRT(bi_nodebase, NNODEBI * (sizeof(struct bi_node) / NBPG));
pmap_map((vm_offset_t)bi_nodebase, (vm_offset_t)BI_BASE(0),
BI_BASE(0) + sizeof(struct bi_node) * NNODEBI,
VM_PROT_READ|VM_PROT_WRITE);
bcopy(&idsptch, &nollhanterare, sizeof(struct ivec_dsp));
nollhanterare.hoppaddr = hant;
for (i = 0; i < 4; i++)
for (j = 0; j < 16; j++)
sb->scb_nexvec[i][j] = &nollhanterare;
}
int
ka820_match(parent, match, aux)
struct device *parent;
void *match, *aux;
{
struct cfdata *cf = match;
struct bi_attach_args *ba = aux;
if (ba->ba_node->biic.bi_dtype != BIDT_KA820)
return 0;
if (ba->ba_nodenr != mastercpu)
return 0;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != ba->ba_nodenr)
return 0;
return 1;
}
void
ka820_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct bi_attach_args *ba = aux;
register int csr;
u_short rev = ba->ba_node->biic.bi_revs;
extern char cpu_model[];
strcpy(cpu_model,"VAX 8200");
cpu_model[6] = rev & 0x8000 ? '5' : '0';
printf(": ka82%c (%s) cpu rev %d, u patch rev %d, sec patch %d\n",
cpu_model[6], mastercpu == ba->ba_nodenr ? "master" : "slave",
((rev >> 11) & 15), ((rev >> 1) &1023), rev & 1);
/* reset the console and enable the RX50 */
csr = ka820port_ptr->csr;
csr &= ~KA820PORT_RSTHALT; /* ??? */
csr |= KA820PORT_CONSCLR | KA820PORT_CRDCLR | KA820PORT_CONSEN |
KA820PORT_RXIE;
ka820port_ptr->csr = csr;
ba->ba_node->biic.bi_intrdes = ba->ba_intcpu;
ba->ba_node->biic.bi_csr |= BICSR_SEIE | BICSR_HEIE;
}
/* Set system time from clock */
/* ARGSUSED */
ka820_clkread(base)
time_t base;
{
struct chiptime c;
int s, rv;
rv = CLKREAD_OK;
/* I wish I knew the differences between these */
if ((ka820clock_ptr->csr3 & KA820CLK_3_VALID) == 0) {
printf("WARNING: TOY clock not marked valid\n");
rv = CLKREAD_WARN;
}
if ((ka820clock_ptr->csr1 & KA820CLK_1_GO) != KA820CLK_1_GO) {
printf("WARNING: TOY clock stopped\n");
rv = CLKREAD_WARN;
}
/* THIS IS NOT RIGHT (clock may change on us) */
s = splhigh();
while (ka820clock_ptr->csr0 & KA820CLK_0_BUSY)
/* void */;
c.sec = ka820clock_ptr->sec;
c.min = ka820clock_ptr->min;
c.hour = ka820clock_ptr->hr;
c.day = ka820clock_ptr->day;
c.mon = ka820clock_ptr->mon;
c.year = ka820clock_ptr->yr;
splx(s);
/* the darn thing needs tweaking! */
c.sec >>= 1; /* tweak */
c.min >>= 1; /* tweak */
c.hour >>= 1; /* tweak */
c.day >>= 1; /* tweak */
c.mon >>= 1; /* tweak */
c.year >>= 1; /* tweak */
time.tv_sec = chiptotime(&c);
return (time.tv_sec ? rv : CLKREAD_BAD);
}
/* store time into clock */
void
ka820_clkwrite()
{
struct chiptime c;
int s;
timetochip(&c);
/* play it again, sam (or mike or kirk or ...) */
c.sec <<= 1; /* tweak */
c.min <<= 1; /* tweak */
c.hour <<= 1; /* tweak */
c.day <<= 1; /* tweak */
c.mon <<= 1; /* tweak */
c.year <<= 1; /* tweak */
s = splhigh();
ka820clock_ptr->csr1 = KA820CLK_1_SET;
while (ka820clock_ptr->csr0 & KA820CLK_0_BUSY)
/* void */;
ka820clock_ptr->sec = c.sec;
ka820clock_ptr->min = c.min;
ka820clock_ptr->hr = c.hour;
ka820clock_ptr->day = c.day;
ka820clock_ptr->mon = c.mon;
ka820clock_ptr->yr = c.year;
/* should we set a `rate'? */
ka820clock_ptr->csr1 = KA820CLK_1_GO;
splx(s);
}
/*
* MS820 support.
*/
struct ms820regs {
struct biiregs biic; /* BI interface chip */
u_long ms_gpr[4]; /* the four gprs (unused) */
int ms_csr1; /* control/status register 1 */
int ms_csr2; /* control/status register 2 */
};
/*
* Bits in CSR1.
*/
#define MS1_ERRSUM 0x80000000 /* error summary (ro) */
#define MS1_ECCDIAG 0x40000000 /* ecc diagnostic (rw) */
#define MS1_ECCDISABLE 0x20000000 /* ecc disable (rw) */
#define MS1_MSIZEMASK 0x1ffc0000 /* mask for memory size (ro) */
#define MS1_RAMTYMASK 0x00030000 /* mask for ram type (ro) */
#define MS1_RAMTY64K 0x00000000 /* 64K chips */
#define MS1_RAMTY256K 0x00010000 /* 256K chips */
#define MS1_RAMTY1MB 0x00020000 /* 1MB chips */
/* type 3 reserved */
#define MS1_CRDINH 0x00008000 /* inhibit crd interrupts (rw) */
#define MS1_MEMVALID 0x00004000 /* memory has been written (ro) */
#define MS1_INTLK 0x00002000 /* interlock flag (ro) */
#define MS1_BROKE 0x00001000 /* broken (rw) */
#define MS1_MBZ 0x00000880 /* zero */
#define MS1_MWRITEERR 0x00000400 /* rds during masked write (rw) */
#define MS1_CNTLERR 0x00000200 /* internal timing busted (rw) */
#define MS1_INTLV 0x00000100 /* internally interleaved (ro) */
#define MS1_DIAGC 0x0000007f /* ecc diagnostic bits (rw) */
/*
* Bits in CSR2.
*/
#define MS2_RDSERR 0x80000000 /* rds error (rw) */
#define MS2_HIERR 0x40000000 /* high error rate (rw) */
#define MS2_CRDERR 0x20000000 /* crd error (rw) */
#define MS2_ADRSERR 0x10000000 /* rds due to addr par err (rw) */
#define MS2_MBZ 0x0f000080 /* zero */
#define MS2_ADDR 0x00fffe00 /* address in error (relative) (ro) */
#define MS2_INTLVADDR 0x00000100 /* error was in bank 1 (ro) */
#define MS2_SYN 0x0000007f /* error syndrome (ro, rw diag) */
static int ms820_match __P((struct device *, void *, void *));
static void ms820_attach __P((struct device *, struct device *, void*));
struct mem_bi_softc {
struct device mem_dev;
struct ms820regs *mem_regs;
};
struct cfattach mem_bi_ca = {
sizeof(struct mem_bi_softc), ms820_match, ms820_attach
};
static int
ms820_match(parent, match, aux)
struct device *parent;
void *match, *aux;
{
struct cfdata *cf = match;
struct bi_attach_args *ba = aux;
if (ba->ba_node->biic.bi_dtype != BIDT_MS820)
return 0;
if (cf->cf_loc[0] != -1 && cf->cf_loc[0] != ba->ba_nodenr)
return 0;
return 1;
}
static void
ms820_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct mem_bi_softc *ms = (void *)self;
struct bi_attach_args *ba = aux;
ms->mem_regs = (void *)ba->ba_node;
if ((ms->mem_regs->biic.bi_csr & BICSR_STS) == 0)
printf(": failed self test\n");
else
printf(": size %dMB, %s chips\n", ((ms->mem_regs->ms_csr1 &
MS1_MSIZEMASK) >> 20), (ms->mem_regs->ms_csr1&MS1_RAMTYMASK
?ms->mem_regs->ms_csr1 & MS1_RAMTY256K?"256K":"1M":"64K"));
ms->mem_regs->biic.bi_intrdes = ba->ba_intcpu;
ms->mem_regs->biic.bi_csr |= BICSR_SEIE | BICSR_HEIE;
ms->mem_regs->ms_csr1 = MS1_MWRITEERR | MS1_CNTLERR;
ms->mem_regs->ms_csr2 = MS2_RDSERR | MS2_HIERR |
MS2_CRDERR | MS2_ADRSERR;
}
void
ka820_memerr()
{
register struct ms820regs *mcr;
struct mem_bi_softc *mc;
extern struct cfdriver mem_cd;
register int m, hard;
register char *type;
static char b1[] = "\20\40ERRSUM\37ECCDIAG\36ECCDISABLE\20CRDINH\17VALID\
\16INTLK\15BROKE\13MWRITEERR\12CNTLERR\11INTLV";
static char b2[] = "\20\40RDS\37HIERR\36CRD\35ADRS";
for (m = 0; m < mem_cd.cd_ndevs; m++) {
mc = mem_cd.cd_devs[m];
if (mc == NULL)
continue;
mcr = mc->mem_regs;
printf("%s: csr1=%b csr2=%b\n", mc->mem_dev.dv_xname,
mcr->ms_csr1, b1, mcr->ms_csr2, b2);
if ((mcr->ms_csr1 & MS1_ERRSUM) == 0)
continue;
hard = 1;
if (mcr->ms_csr1 & MS1_BROKE)
type = "broke";
else if (mcr->ms_csr1 & MS1_CNTLERR)
type = "cntl err";
else if (mcr->ms_csr2 & MS2_ADRSERR)
type = "address parity err";
else if (mcr->ms_csr2 & MS2_RDSERR)
type = "rds err";
else if (mcr->ms_csr2 & MS2_CRDERR) {
hard = 0;
type = "";
} else
type = "mysterious error";
printf("%s: %s%s%s addr %x bank %x syn %x\n",
mc->mem_dev.dv_xname,
hard ? "hard error: " : "soft ecc",
type, mcr->ms_csr2 & MS2_HIERR ?
" (+ other rds or crd err)" : "",
((mcr->ms_csr2 & MS2_ADDR) + mcr->biic.bi_sadr) >> 9,
(mcr->ms_csr2 & MS2_INTLVADDR) != 0,
mcr->ms_csr2 & MS2_SYN);
mcr->ms_csr1 = mcr->ms_csr1 | MS1_CRDINH;
mcr->ms_csr2 = mcr->ms_csr2;
}
}
/* these are bits 0 to 6 in the summary field */
char *mc8200[] = {
"cpu bad ipl", "ucode lost err",
"ucode par err", "DAL par err",
"BI bus err", "BTB tag par",
"cache tag par",
};
#define MC8200_BADIPL 0x01
#define MC8200_UERR 0x02
#define MC8200_UPAR 0x04
#define MC8200_DPAR 0x08
#define MC8200_BIERR 0x10
#define MC8200_BTAGPAR 0x20
#define MC8200_CTAGPAR 0x40
struct mc8200frame {
int mc82_bcnt; /* byte count == 0x20 */
int mc82_summary; /* summary parameter */
int mc82_param1; /* parameter 1 */
int mc82_va; /* va register */
int mc82_vap; /* va prime register */
int mc82_ma; /* memory address */
int mc82_status; /* status word */
int mc82_epc; /* error pc */
int mc82_upc; /* micro pc */
int mc82_pc; /* current pc */
int mc82_psl; /* current psl */
};
int
ka820_mchk(cmcf)
caddr_t cmcf;
{
register struct mc8200frame *mcf = (struct mc8200frame *)cmcf;
register int i, type = mcf->mc82_summary;
/* ignore BI bus errors during configuration */
if (cold && type == MC8200_BIERR) {
mtpr(PR_MCESR, 0xf);
return (MCHK_RECOVERED);
}
/*
* SOME ERRORS ARE RECOVERABLE
* do it later
*/
printf("machine check %x: ", type);
for (i = 0; i < sizeof (mc8200) / sizeof (mc8200[0]); i++)
if (type & (1 << i))
printf(" %s,", mc8200[i]);
printf(" param1 %x\n", mcf->mc82_param1);
printf(
"\tva %x va' %x ma %x pc %x psl %x\n\tstatus %x errpc %x upc %x\n",
mcf->mc82_va, mcf->mc82_vap, mcf->mc82_ma,
mcf->mc82_pc, mcf->mc82_psl,
mcf->mc82_status, mcf->mc82_epc, mcf->mc82_upc);
return (MCHK_PANIC);
}
/*
* Receive a character from logical console.
*/
rxcdintr()
{
register int c = mfpr(PR_RXCD);
/* not sure what (if anything) to do with these */
printf("rxcd node %x c=0x%x\n", (c >> 8) & 0xf, c & 0xff);
}