/* $NetBSD: ka650.h,v 1.13 2022/04/08 10:17:54 andvar Exp $ */
/*
* Copyright (c) 1988 The Regents of the University of California.
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Mt. Xinu.
*
* 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. 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.
*
* @(#)ka650.h 7.5 (Berkeley) 6/28/90
*/
#ifndef _VAX_KA650_H_
#define _VAX_KA650_H_
/*
*
* Definitions specific to the ka650 (uVAX 3600/3602) CPU card.
*/
/*
* CAER: Memory System Error Register (IPR 39)
*/
#define CAER_DAL 0x00000040 /* CDAL or level 2 cache data parity */
#define CAER_MCD 0x00000020 /* mcheck due to DAL parity error */
#define CAER_MCC 0x00000010 /* mcheck due to 1st lev cache parity */
#define CAER_DAT 0x00000002 /* data parity in 1st level cache */
#define CAER_TAG 0x00000001 /* tag parity in 1st level cache */
/*
* Internal State Info 2: (for mcheck recovery)
*/
#define IS2_VCR 0x00008000 /* VAX Can't Restart flag */
/*
* DMA System Error Register (merr_dser)
*/
#define DSER_QNXM 0x00000080 /* Q-22 Bus NXM */
#define DSER_QPE 0x00000020 /* Q-22 Bus parity Error */
#define DSER_MEM 0x00000010 /* Main mem err due to ext dev DMA */
#define DSER_LOST 0x00000008 /* Lost error: DSER <7,5,4,0> set */
#define DSER_NOGRANT 0x00000004 /* No Grant timeout on CPU demand R/W */
#define DSER_DNXM 0x00000001 /* DMA NXM */
#define DSER_CLEAR (DSER_QNXM | DSER_QPE | DSER_MEM | \
DSER_LOST | DSER_NOGRANT | DSER_DNXM)
#define DMASER_BITS \
"\20\20BHALT\17DCNEG\10QBNXM\6QBPE\5MEMERR\4LOSTERR\3NOGRANT\1DMANXM"
#ifndef _LOCORE
/*
* Local registers (in I/O space)
* This is done in disjoint sections. Map names are set in locore.s
* and they are mapped in routine configcpu()
*/
/*
* memory error & configuration registers
*/
struct ka650_merr {
u_long merr_scr; /* System Config Register */
u_long merr_dser; /* DMA System Error Register */
u_long merr_qbear; /* QBus Error Address Register */
u_long merr_dear; /* DMA Error Address Register */
u_long merr_qbmbr; /* Q Bus Map Base address Register */
u_long pad[59];
u_long merr_csr[16]; /* Main Memory Config Regs (16 banks) */
u_long merr_errstat; /* Main Memory Error Status */
u_long merr_cont; /* Main Memory Control */
};
#define KA650_MERR 0x20080000
/*
* Main Memory Error Status Register (merr_errstat)
*/
#define MEM_EMASK 0xe0000180 /* mask of all err bits */
#define MEM_RDS 0x80000000 /* uncorrectable main memory */
#define MEM_RDSHIGH 0x40000000 /* high rate RDS errors */
#define MEM_CRD 0x20000000 /* correctable main memory */
#define MEM_DMA 0x00000100 /* DMA read or write error */
#define MEM_CDAL 0x00000080 /* CDAL Parity error on write */
#define MEM_PAGE 0x1ffffe00 /* Offending Page Number */
#define MEM_PAGESHFT 9 /* Shift to normalize page number */
/*
* CBTCR: CDAL Bus Timeout Control Register (ssc_cbtcr)
*/
#define CBTCR_BTO 0x80000000 /* r/w unimp IPR or unack intr */
#define CBTCR_RWT 0x40000000 /* CDAL Bus Timeout on CPU or DMA */
/*
* TCR0/TCR1: Programmable Timer Control Registers (ssc_tcr[01])
* (The rest of the bits are the same as in the standard VAX
* Interval timer and are defined in clock.h)
*/
#define TCR_STP 0x00000004 /* Stop after time-out */
/*
* Flags for Console Program Mail Box
*/
#define CPMB650_HALTACT 0x03 /* Field for halt action */
#define CPMB650_RESTART 0x01 /* Restart */
#define CPMB650_REBOOT 0x02 /* Reboot */
#define CPMB650_HALT 0x03 /* Halt */
#define CPMB650_BIP 0x04 /* Bootstrap in progress */
#define CPMB650_RIP 0x08 /* Restart in progress */
#define CPMB650_DOTHIS 0x30 /* Execute sommand */
#define CPMB650_LANG 0xf0 /* Language field */
/*
* Inter Processor Communication Register
* To determine if memory error was from QBUS device DMA (as opposed to CPU).
*/
struct ka650_ipcr {
u_long pad[80];
u_short ipcr0; /* InterProcessor Comm Reg for arbiter */
};
#define KA650_IPCR 0x20001e00
#endif /* _LOCORE */
/*
* Physical start address of the Qbus memory.
* The q-bus memory size is 4 meg.
* Physical start address of the I/O space (where the 8Kbyte I/O page is).
*/
#define KA650_QMEM 0x30000000
#define KA650_QMEMSIZE (512*8192)
#define KA650_QDEVADDR 0x20000000
/*
* Mapping info for Cache Entries, including
* Size (in bytes) of 2nd Level Cache for cache flush operation
*/
#define KA650_CACHE 0x10000000
#define KA650_CACHESIZE (64*1024)
/*
* Useful ROM addresses
*/
#define KA650ROM_SIDEX 0x20060004 /* system ID extension */
#define KA650ROM_GETC 0x20060008 /* (jsb) get character from console */
#define KA650ROM_PUTS 0x2006000c /* (jsb) put string to console */
#define KA650ROM_GETS 0x20060010 /* (jsb) read string with prompt */
#define KA650_CONSTYPE 0x20140401 /* byte at which console type resides */