r3900regs.h revision 1.5 1 1.5 uch /* $NetBSD: r3900regs.h,v 1.5 2001/12/02 10:37:25 uch Exp $ */
2 1.1 uch
3 1.4 uch /*-
4 1.4 uch * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
5 1.1 uch * All rights reserved.
6 1.1 uch *
7 1.4 uch * This code is derived from software contributed to The NetBSD Foundation
8 1.4 uch * by UCHIYAMA Yasushi.
9 1.4 uch *
10 1.1 uch * Redistribution and use in source and binary forms, with or without
11 1.1 uch * modification, are permitted provided that the following conditions
12 1.1 uch * are met:
13 1.1 uch * 1. Redistributions of source code must retain the above copyright
14 1.1 uch * notice, this list of conditions and the following disclaimer.
15 1.4 uch * 2. Redistributions in binary form must reproduce the above copyright
16 1.4 uch * notice, this list of conditions and the following disclaimer in the
17 1.4 uch * documentation and/or other materials provided with the distribution.
18 1.4 uch * 3. All advertising materials mentioning features or use of this software
19 1.4 uch * must display the following acknowledgement:
20 1.4 uch * This product includes software developed by the NetBSD
21 1.4 uch * Foundation, Inc. and its contributors.
22 1.4 uch * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.4 uch * contributors may be used to endorse or promote products derived
24 1.4 uch * from this software without specific prior written permission.
25 1.1 uch *
26 1.4 uch * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.4 uch * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.4 uch * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.4 uch * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.4 uch * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.4 uch * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.4 uch * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.4 uch * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.4 uch * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.4 uch * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.4 uch * POSSIBILITY OF SUCH DAMAGE.
37 1.1 uch */
38 1.4 uch
39 1.1 uch /*
40 1.1 uch * [address space]
41 1.1 uch * kseg2 0xc0000000 - 0xfeffffff
42 1.1 uch * reserved 0xff000000 - 0xfffeffff
43 1.1 uch * kseg2 0xffff0000 - 0xffffffff
44 1.1 uch * -> vmparam.h VM_MAX_KERNEL_ADDRESS
45 1.1 uch */
46 1.1 uch
47 1.1 uch /*
48 1.1 uch * [cause register]
49 1.1 uch */
50 1.1 uch #define R3900_CR_EXC_CODE MIPS3_CR_EXC_CODE /* five bits */
51 1.1 uch #undef MIPS1_CR_EXC_CODE
52 1.1 uch #define MIPS1_CR_EXC_CODE R3900_CR_EXC_CODE
53 1.1 uch
54 1.1 uch /*
55 1.1 uch * [status register]
56 1.1 uch * R3900 don't have PE, CM, PZ, SwC and IsC.
57 1.1 uch */
58 1.1 uch #define R3900_SR_NMI 0x00100000 /* r3k PE position */
59 1.5 uch #if 0
60 1.1 uch #undef MIPS1_PARITY_ERR
61 1.1 uch #undef MIPS1_CACHE_MISS
62 1.1 uch #undef MIPS1_PARITY_ZERO
63 1.1 uch #undef MIPS1_SWAP_CACHES
64 1.1 uch #undef MIPS1_ISOL_CACHES
65 1.5 uch #endif
66 1.1 uch
67 1.1 uch /*
68 1.1 uch * [context register]
69 1.1 uch * - no changes.
70 1.1 uch */
71 1.1 uch
72 1.1 uch
73 1.1 uch /*
74 1.1 uch * TX3900 Coprocessor 0 registers
75 1.1 uch */
76 1.1 uch #define R3900_COP_0_CONFIG $3
77 1.1 uch #define R3900_COP_0_DEBUG $16
78 1.1 uch #define R3900_COP_0_DEPC $17
79 1.1 uch
80 1.1 uch #define R3920_COP_0_PAGEMASK $5
81 1.1 uch #define R3920_COP_0_WIRED $6
82 1.1 uch #define R3920_COP_0_CACHE $7
83 1.1 uch #define R3920_COP_0_TAG_LO $20
84 1.1 uch
85 1.1 uch /*
86 1.1 uch * TLB entry
87 1.1 uch * 3912 ... TLB entry is 64bits wide and R3000A compatible
88 1.1 uch * 3922 ... TLB entry is 96bits wide
89 1.1 uch */
90 1.1 uch
91 1.1 uch /*
92 1.1 uch * Index register
93 1.1 uch * 3912 ... index field[8:12] (32 entry)
94 1.1 uch */
95 1.1 uch #define R3900_TLB_NUM_TLB_ENTRIES 32
96 1.1 uch #define R3920_TLB_NUM_TLB_ENTRIES 64
97 1.1 uch #undef MIPS1_TLB_NUM_TLB_ENTRIES
98 1.1 uch #ifdef TX391X
99 1.1 uch #define MIPS1_TLB_NUM_TLB_ENTRIES R3900_TLB_NUM_TLB_ENTRIES
100 1.1 uch #elif defined TX392X
101 1.1 uch #define MIPS1_TLB_NUM_TLB_ENTRIES R3920_TLB_NUM_TLB_ENTRIES
102 1.1 uch #endif
103 1.1 uch
104 1.1 uch /*
105 1.1 uch * Config register (R3900 specific)
106 1.1 uch */
107 1.1 uch #define R3900_CONFIG_ICS_SHIFT 19
108 1.1 uch #define R3900_CONFIG_ICS_MASK 0x00380000
109 1.1 uch #define R3900_CONFIG_ICS_1KB 0x00000000
110 1.1 uch #define R3900_CONFIG_ICS_2KB 0x00080000
111 1.1 uch #define R3900_CONFIG_ICS_4KB 0x00100000
112 1.1 uch #define R3900_CONFIG_ICS_8KB 0x00180000
113 1.1 uch #define R3900_CONFIG_ICS_16KB 0x00200000
114 1.1 uch
115 1.1 uch #define R3900_CONFIG_DCS_SHIFT 16
116 1.1 uch #define R3900_CONFIG_DCS_1KB 0x00000000
117 1.1 uch #define R3900_CONFIG_DCS_2KB 0x00010000
118 1.1 uch #define R3900_CONFIG_DCS_4KB 0x00020000
119 1.1 uch #define R3900_CONFIG_DCS_8KB 0x00030000
120 1.1 uch #define R3900_CONFIG_DCS_16KB 0x00040000
121 1.1 uch
122 1.1 uch #define R3900_CONFIG_DCS_MASK 0x00070000
123 1.1 uch #define R3900_CONFIG_CWFON 0x00004000
124 1.1 uch #define R3900_CONFIG_WBON 0x00002000
125 1.1 uch #define R3900_CONFIG_RF_SHIFT 10
126 1.1 uch #define R3900_CONFIG_RF_MASK 0x00000c00
127 1.1 uch #define R3900_CONFIG_DOZE 0x00000200
128 1.1 uch #define R3900_CONFIG_HALT 0x00000100
129 1.1 uch #define R3900_CONFIG_LOCK 0x00000080
130 1.1 uch #define R3900_CONFIG_ICE 0x00000020
131 1.1 uch #define R3900_CONFIG_DCE 0x00000010
132 1.1 uch #define R3900_CONFIG_IRSIZE_SHIFT 2
133 1.1 uch #define R3900_CONFIG_IRSIZE_MASK 0x0000000c
134 1.1 uch #define R3900_CONFIG_DRSIZE_SHIFT 0
135 1.1 uch #define R3900_CONFIG_DRSIZE_MASK 0x00000003
136 1.1 uch
137 1.1 uch /*
138 1.4 uch * CACHE
139 1.1 uch */
140 1.4 uch /* Cache size (limit) */
141 1.4 uch /* R3900/R3920 */
142 1.4 uch #define R3900_C_SIZE_MIN 1024
143 1.4 uch #define R3900_C_SIZE_MAX 8192
144 1.4 uch /* Cache line size */
145 1.4 uch /* R3900 */
146 1.4 uch #define R3900_C_LSIZE_I 16
147 1.4 uch #define R3900_C_LSIZE_D 4
148 1.4 uch /* R3920 */
149 1.4 uch #define R3920_C_LSIZE_I 16
150 1.4 uch #define R3920_C_LSIZE_D 16
151 1.4 uch /* Cache operation */
152 1.4 uch /* R3900 */
153 1.4 uch #define R3900_C_IINV_I 0x00
154 1.4 uch #define R3900_C_IWBINV_D 0x01
155 1.4 uch #define R3900_C_ILRUC_I 0x04
156 1.4 uch #define R3900_C_ILRUC_D 0x05
157 1.4 uch #define R3900_C_ILCKC_D 0x09 /* R3900 only */
158 1.4 uch #define R3900_C_HINV_D 0x11
159 1.4 uch /* R3920 */
160 1.4 uch #define R3920_C_IINV_I 0x00
161 1.4 uch #define R3920_C_IWBINV_D 0x01
162 1.4 uch #define R3920_C_ILRUC_I 0x04
163 1.4 uch #define R3920_C_ILRUC_D 0x05
164 1.4 uch #define R3920_C_ILDTAG_I 0x0c /* R3920 only */
165 1.4 uch #define R3920_C_ILDTAG_D 0x0d /* R3920 only */
166 1.4 uch #define R3920_C_HINV_I 0x10 /* R3920 only */
167 1.4 uch #define R3920_C_HINV_D 0x11
168 1.4 uch #define R3920_C_HWBINV_D 0x14 /* R3920 only */
169 1.4 uch #define R3920_C_HWB_D 0x18 /* R3920 only */
170 1.4 uch #define R3920_C_ISTTAG_I 0x1c /* R3920 only */
171 1.4 uch #define R3920_C_ISTTAG_D 0x1d /* R3920 only */
172