NetBSD/sys/arch/sparc/include/ctlreg.h

184 lines
7.9 KiB
C
Raw Normal View History

/*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
* This software was developed by the Computer Systems Engineering group
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
* contributed to Berkeley.
*
* 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, Lawrence Berkeley Laboratory.
*
* 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.
*
* @(#)ctlreg.h 8.1 (Berkeley) 6/11/93
*
* from: Header: ctlreg.h,v 1.6 93/04/27 14:29:07 torek Exp
1994-08-20 05:19:27 +04:00
* $Id: ctlreg.h,v 1.4 1994/08/20 01:19:27 deraadt Exp $
*/
/*
1994-05-05 11:51:25 +04:00
* Sun-4, 4c, and 4m control registers. (includes address space definitions
* and some registers in control space).
*/
1994-05-05 11:51:25 +04:00
/* 0x00 unused */
/* 0x01 unused */
#if defined(SUN4C) || defined(SUN4)
#define ASI_CONTROL 0x02 /* cache enable, context reg, etc */
#define ASI_SEGMAP 0x03 /* segment maps (so we can reach each pmeg) */
#define ASI_PTE 0x04 /* PTE space (pmegs) */
#define ASI_HWFLUSHSEG 0x05 /* hardware assisted version of FLUSHSEG */
#define ASI_HWFLUSHPG 0x06 /* hardware assisted version of FLUSHPG */
#define ASI_HWFLUSHCTX 0x07 /* hardware assisted version of FLUSHCTX */
#endif
#if defined(SUN4M) || defined(SUN4M)
#define ASI_SRMMUFP 0x03 /* ref mmu flush/probe */
1994-07-05 01:36:10 +04:00
#define ASI_SRMMUFP_L3 (0<<8) /* probe L3 | flush L3 PTE */
#define ASI_SRMMUFP_L2 (1<<8) /* probe L2 | flush L2/L3 PTE/PTD's */
#define ASI_SRMMUFP_L1 (2<<8) /* probe L1 | flush L1/L2/L3 PTE/PTD's*/
#define ASI_SRMMUFP_L0 (3<<8) /* probe L0 | flush L0/L1/L2/L3 PTE/PTD's */
#define ASI_SRMMUFP_LN (4<<8) /* probe all | flush all levels */
1994-05-05 11:51:25 +04:00
#define ASI_SRMMU 0x04 /* ref mmu registers */
#define ASI_SRMMUDIAG 0x06
#endif
#define ASI_USERI 0x08 /* I-space (user) */
#define ASI_KERNELI 0x09 /* I-space (kernel) */
#define ASI_USERD 0x0a /* D-space (user) */
#define ASI_KERNELD 0x0b /* D-space (kernel) */
#if defined(SUN4C) || defined(SUN4)
#define ASI_FLUSHSEG 0x0c /* causes hardware to flush cache segment */
#define ASI_FLUSHPG 0x0d /* causes hardware to flush cache page */
#define ASI_FLUSHCTX 0x0e /* causes hardware to flush cache context */
#if defined(SUN4)
#define ASI_DCACHE 0x0f /* flush data cache; not used on 4c */
#endif
#endif
#if defined(SUN4M)
#define ASI_ICACHETAG 0x0c /* instruction cache tag */
#define ASI_ICACHEDATA 0x0d /* instruction cache data */
#define ASI_DCACHETAG 0x0e /* data cache tag */
#define ASI_DCACHEDATA 0x0f /* data cache data */
#define ASI_IDCACHELFP 0x10 /* ms2 only: flush i&d cache line (page) */
#define ASI_IDCACHELFS 0x11 /* ms2 only: flush i&d cache line (seg) */
#define ASI_IDCACHELFR 0x12 /* ms2 only: flush i&d cache line (reg) */
#define ASI_IDCACHELFC 0x13 /* ms2 only: flush i&d cache line (ctxt) */
#define ASI_IDCACHELFU 0x14 /* ms2 only: flush i&d cache line (user) */
#define ASI_SRMMUTLB 0x20 /* sun ref mmu bypass, ie. direct tlb access */
#define ASI_ICACHECLR 0x36 /* ms1 only: instruction cache flash clear */
#define ASI_DCACHECLR 0x37 /* ms1 only: data cache clear */
#define ASI_DCACHEDIAG 0x39 /* data cache diagnostic register access */
#endif
1994-05-05 11:51:25 +04:00
#if defined(SUN4) || defined(SUN4C)
/* registers in the control space */
#define AC_CONTEXT 0x30000000 /* context register (byte) */
#define AC_SYSENABLE 0x40000000 /* system enable register (byte) */
#define AC_CACHETAGS 0x80000000 /* cache tag base address */
#define AC_SERIAL 0xf0000000 /* special serial port sneakiness */
/* AC_SERIAL is not used in the kernel (it is for the PROM) */
1994-05-05 11:51:25 +04:00
#endif
1994-05-05 11:51:25 +04:00
#if defined(SUN4)
1994-08-20 05:19:27 +04:00
#define AC_IDPROM 0x00000000 /* ID PROM */
#define AC_DVMA_ENABLE 0x50000000 /* enable user dvma */
#define AC_BUS_ERR 0x60000000 /* bus error register */
#define AC_DIAG_REG 0x70000000 /* diagnostic reg */
#define AC_DVMA_MAP 0xd0000000 /* user dvma map entries */
1994-08-20 05:19:27 +04:00
/* where does this belong? */
#define ME_REG_IERR 0x80 /* memory err ctrl reg error intr pending bit */
#endif
1994-05-05 11:51:25 +04:00
#if defined(SUN4C)
#define AC_SYNC_ERR 0x60000000 /* sync (memory) error reg */
#define AC_SYNC_VA 0x60000004 /* sync error virtual addr */
#define AC_ASYNC_ERR 0x60000008 /* async error reg */
#define AC_ASYNC_VA 0x6000000c /* async error virtual addr */
#define AC_CACHEDATA 0x90000000 /* cached data */
1994-08-20 05:19:27 +04:00
#endif
1994-08-20 05:19:27 +04:00
#if defined(SUN4) || defined(SUN4C)
/*
* Bits in sync error register. Reading the register clears these;
* otherwise they accumulate. The error(s) occurred at the virtual
* address stored in the sync error address register, and may have
* been due to, e.g., what would usually be called a page fault.
* Worse, the bits accumulate during instruction prefetch, so
* various bits can be on that should be off.
*/
#define SER_WRITE 0x8000 /* error occurred during write */
#define SER_INVAL 0x80 /* PTE had PG_V off */
#define SER_PROT 0x40 /* operation violated PTE prot */
#define SER_TIMEOUT 0x20 /* bus timeout (non-existent mem) */
#define SER_SBUSERR 0x10 /* S-Bus bus error */
#define SER_MEMERR 0x08 /* memory ecc/parity error */
#define SER_SZERR 0x02 /* size error, whatever that is */
#define SER_WATCHDOG 0x01 /* watchdog reset (never see this) */
#define SER_BITS \
"\20\20WRITE\10INVAL\7PROT\6TIMEOUT\5SBUSERR\4MEMERR\2SZERR\1WATCHDOG"
/*
* Bits in async error register (errors from DVMA or Sun-4 cache
* writeback). The corresponding bit is also set in the sync error reg.
*
* A writeback invalid error means there is a bug in the PTE manager.
*
* The word is that the async error register does not work right.
*/
#define AER_WBINVAL 0x80 /* writeback found PTE without PG_V */
#define AER_TIMEOUT 0x20 /* bus timeout */
#define AER_DVMAERR 0x10 /* bus error during DVMA */
#define AER_BITS "\20\10WBINVAL\6TIMEOUT\5DVMAERR"
/*
* Bits in system enable register.
*/
#define SYSEN_DVMA 0x20 /* enable dvma */
#define SYSEN_CACHE 0x10 /* enable cache */
#define SYSEN_RESET 0x04 /* reset the hardware */
1994-05-05 11:51:25 +04:00
#endif
#if defined(SUN4M)
#define SRMMU_PCR 0x00000000 /* processor control register */
#define SRMMU_CXTPTR 0x00000100 /* context table pointer register */
#define SRMMU_CXR 0x00000200 /* context register */
#define SRMMU_SFSTAT 0x00000300 /* syncronous fault status reg */
#define SRMMU_SFADDR 0x00000400 /* syncronous fault address reg */
#define SRMMU_TLBCTRL 0x00001000 /* TLB replacement control reg */
#endif