1 |
27 |
unneback |
//==========================================================================
|
2 |
|
|
//
|
3 |
|
|
// spr_defs.h
|
4 |
|
|
//
|
5 |
|
|
// Defines OR1K architecture specific special-purpose registers (SPRs)
|
6 |
|
|
//
|
7 |
|
|
//==========================================================================
|
8 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
9 |
|
|
// -------------------------------------------
|
10 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
11 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
12 |
|
|
//
|
13 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
14 |
|
|
// the terms of the GNU General Public License as published by the Free
|
15 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
16 |
|
|
//
|
17 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
18 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
19 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
20 |
|
|
// for more details.
|
21 |
|
|
//
|
22 |
|
|
// You should have received a copy of the GNU General Public License along
|
23 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
24 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
25 |
|
|
//
|
26 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
27 |
|
|
// or inline functions from this file, or you compile this file and link it
|
28 |
|
|
// with other works to produce a work based on this file, this file does not
|
29 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
30 |
|
|
// License. However the source code for this file must still be made available
|
31 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
32 |
|
|
//
|
33 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
34 |
|
|
// this file might be covered by the GNU General Public License.
|
35 |
|
|
//
|
36 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
37 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
38 |
|
|
// -------------------------------------------
|
39 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
40 |
|
|
//==========================================================================
|
41 |
|
|
//#####DESCRIPTIONBEGIN####
|
42 |
|
|
//
|
43 |
|
|
// Author(s): sfurman
|
44 |
|
|
// Contributors: Damjan Lambert
|
45 |
|
|
// Date: 2003-01-17
|
46 |
|
|
// Purpose: Define OpenRISC architecture special-purpose registers
|
47 |
|
|
// Usage: #include <cyg/hal/hal_arch.h>
|
48 |
|
|
//
|
49 |
|
|
//####DESCRIPTIONEND####
|
50 |
|
|
//
|
51 |
|
|
//==========================================================================
|
52 |
|
|
|
53 |
|
|
/* Definition of special-purpose registers (SPRs) */
|
54 |
|
|
|
55 |
|
|
#ifndef _ASM_SPR_DEFS_H
|
56 |
|
|
#define _ASM_SPR_DEFS_H
|
57 |
|
|
|
58 |
|
|
#define MAX_GRPS (32)
|
59 |
|
|
#define MAX_SPRS_PER_GRP_BITS (11)
|
60 |
|
|
#define MAX_SPRS_PER_GRP (1 << MAX_SPRS_PER_GRP_BITS)
|
61 |
|
|
#define MAX_SPRS (0x10000)
|
62 |
|
|
|
63 |
|
|
/* Base addresses for the groups */
|
64 |
|
|
#define SPRGROUP_SYS (0<< MAX_SPRS_PER_GRP_BITS)
|
65 |
|
|
#define SPRGROUP_DMMU (1<< MAX_SPRS_PER_GRP_BITS)
|
66 |
|
|
#define SPRGROUP_IMMU (2<< MAX_SPRS_PER_GRP_BITS)
|
67 |
|
|
#define SPRGROUP_DC (3<< MAX_SPRS_PER_GRP_BITS)
|
68 |
|
|
#define SPRGROUP_IC (4<< MAX_SPRS_PER_GRP_BITS)
|
69 |
|
|
#define SPRGROUP_MAC (5<< MAX_SPRS_PER_GRP_BITS)
|
70 |
|
|
#define SPRGROUP_D (6<< MAX_SPRS_PER_GRP_BITS)
|
71 |
|
|
#define SPRGROUP_PC (7<< MAX_SPRS_PER_GRP_BITS)
|
72 |
|
|
#define SPRGROUP_PM (8<< MAX_SPRS_PER_GRP_BITS)
|
73 |
|
|
#define SPRGROUP_PIC (9<< MAX_SPRS_PER_GRP_BITS)
|
74 |
|
|
#define SPRGROUP_TT (10<< MAX_SPRS_PER_GRP_BITS)
|
75 |
|
|
|
76 |
|
|
/* System control and status group */
|
77 |
|
|
#define SPR_VR (SPRGROUP_SYS + 0)
|
78 |
|
|
#define SPR_UPR (SPRGROUP_SYS + 1)
|
79 |
|
|
#define SPR_PC (SPRGROUP_SYS + 16) /* CZ 21/06/01 */
|
80 |
|
|
#define SPR_SR (SPRGROUP_SYS + 17) /* CZ 21/06/01 */
|
81 |
|
|
#define SPR_EPCR_BASE (SPRGROUP_SYS + 32) /* CZ 21/06/01 */
|
82 |
|
|
#define SPR_EPCR_LAST (SPRGROUP_SYS + 47) /* CZ 21/06/01 */
|
83 |
|
|
#define SPR_EEAR_BASE (SPRGROUP_SYS + 48)
|
84 |
|
|
#define SPR_EEAR_LAST (SPRGROUP_SYS + 63)
|
85 |
|
|
#define SPR_ESR_BASE (SPRGROUP_SYS + 64)
|
86 |
|
|
#define SPR_ESR_LAST (SPRGROUP_SYS + 79)
|
87 |
|
|
|
88 |
|
|
#if 0
|
89 |
|
|
/* Data MMU group */
|
90 |
|
|
#define SPR_DMMUCR (SPRGROUP_DMMU + 0)
|
91 |
|
|
#define SPR_DTLBMR_BASE(WAY) (SPRGROUP_DMMU + 0x200 + (WAY) * 0x200)
|
92 |
|
|
#define SPR_DTLBMR_LAST(WAY) (SPRGROUP_DMMU + 0x2ff + (WAY) * 0x200)
|
93 |
|
|
#define SPR_DTLBTR_BASE(WAY) (SPRGROUP_DMMU + 0x300 + (WAY) * 0x200)
|
94 |
|
|
#define SPR_DTLBTR_LAST(WAY) (SPRGROUP_DMMU + 0x3ff + (WAY) * 0x200)
|
95 |
|
|
|
96 |
|
|
/* Instruction MMU group */
|
97 |
|
|
#define SPR_IMMUCR (SPRGROUP_IMMU + 0)
|
98 |
|
|
#define SPR_ITLBMR_BASE(WAY) (SPRGROUP_IMMU + 0x200 + (WAY) * 0x200)
|
99 |
|
|
#define SPR_ITLBMR_LAST(WAY) (SPRGROUP_IMMU + 0x2ff + (WAY) * 0x200)
|
100 |
|
|
#define SPR_ITLBTR_BASE(WAY) (SPRGROUP_IMMU + 0x300 + (WAY) * 0x200)
|
101 |
|
|
#define SPR_ITLBTR_LAST(WAY) (SPRGROUP_IMMU + 0x3ff + (WAY) * 0x200)
|
102 |
|
|
#else
|
103 |
|
|
/* Data MMU group */
|
104 |
|
|
#define SPR_DMMUCR (SPRGROUP_DMMU + 0)
|
105 |
|
|
#define SPR_DTLBMR_BASE(WAY) (SPRGROUP_DMMU + 0x200 + (WAY) * 0x100)
|
106 |
|
|
#define SPR_DTLBMR_LAST(WAY) (SPRGROUP_DMMU + 0x27f + (WAY) * 0x100)
|
107 |
|
|
#define SPR_DTLBTR_BASE(WAY) (SPRGROUP_DMMU + 0x280 + (WAY) * 0x100)
|
108 |
|
|
#define SPR_DTLBTR_LAST(WAY) (SPRGROUP_DMMU + 0x2ff + (WAY) * 0x100)
|
109 |
|
|
|
110 |
|
|
/* Instruction MMU group */
|
111 |
|
|
#define SPR_IMMUCR (SPRGROUP_IMMU + 0)
|
112 |
|
|
#define SPR_ITLBMR_BASE(WAY) (SPRGROUP_IMMU + 0x200 + (WAY) * 0x100)
|
113 |
|
|
#define SPR_ITLBMR_LAST(WAY) (SPRGROUP_IMMU + 0x27f + (WAY) * 0x100)
|
114 |
|
|
#define SPR_ITLBTR_BASE(WAY) (SPRGROUP_IMMU + 0x280 + (WAY) * 0x100)
|
115 |
|
|
#define SPR_ITLBTR_LAST(WAY) (SPRGROUP_IMMU + 0x2ff + (WAY) * 0x100)
|
116 |
|
|
#endif
|
117 |
|
|
|
118 |
|
|
/* Data cache group */
|
119 |
|
|
#define SPR_DCCR (SPRGROUP_DC + 0)
|
120 |
|
|
#define SPR_DCBPR (SPRGROUP_DC + 1)
|
121 |
|
|
#define SPR_DCBFR (SPRGROUP_DC + 2)
|
122 |
|
|
#define SPR_DCBIR (SPRGROUP_DC + 3)
|
123 |
|
|
#define SPR_DCBWR (SPRGROUP_DC + 4)
|
124 |
|
|
#define SPR_DCBLR (SPRGROUP_DC + 5)
|
125 |
|
|
#define SPR_DCR_BASE(WAY) (SPRGROUP_DC + 0x200 + (WAY) * 0x200)
|
126 |
|
|
#define SPR_DCR_LAST(WAY) (SPRGROUP_DC + 0x3ff + (WAY) * 0x200)
|
127 |
|
|
|
128 |
|
|
/* Instruction cache group */
|
129 |
|
|
#define SPR_ICCR (SPRGROUP_IC + 0)
|
130 |
|
|
#define SPR_ICBPR (SPRGROUP_IC + 1)
|
131 |
|
|
#define SPR_ICBIR (SPRGROUP_IC + 2)
|
132 |
|
|
#define SPR_ICBLR (SPRGROUP_IC + 3)
|
133 |
|
|
#define SPR_ICR_BASE(WAY) (SPRGROUP_IC + 0x200 + (WAY) * 0x200)
|
134 |
|
|
#define SPR_ICR_LAST(WAY) (SPRGROUP_IC + 0x3ff + (WAY) * 0x200)
|
135 |
|
|
|
136 |
|
|
/* MAC group */
|
137 |
|
|
#define SPR_MACLO (SPRGROUP_MAC + 1)
|
138 |
|
|
#define SPR_MACHI (SPRGROUP_MAC + 2)
|
139 |
|
|
|
140 |
|
|
/* Debug group */
|
141 |
|
|
#define SPR_DVR(N) (SPRGROUP_D + (N))
|
142 |
|
|
#define SPR_DCR(N) (SPRGROUP_D + 8 + (N))
|
143 |
|
|
#define SPR_DMR1 (SPRGROUP_D + 16)
|
144 |
|
|
#define SPR_DMR2 (SPRGROUP_D + 17)
|
145 |
|
|
#define SPR_DWCR0 (SPRGROUP_D + 18)
|
146 |
|
|
#define SPR_DWCR1 (SPRGROUP_D + 19)
|
147 |
|
|
#define SPR_DSR (SPRGROUP_D + 20)
|
148 |
|
|
#define SPR_DRR (SPRGROUP_D + 21)
|
149 |
|
|
#define SPR_DIR (SPRGROUP_D + 22)
|
150 |
|
|
|
151 |
|
|
/* Performance counters group */
|
152 |
|
|
#define SPR_PCCR(N) (SPRGROUP_PC + (N))
|
153 |
|
|
#define SPR_PCMR(N) (SPRGROUP_PC + 8 + (N))
|
154 |
|
|
|
155 |
|
|
/* Power management group */
|
156 |
|
|
#define SPR_PMR (SPRGROUP_PM + 0)
|
157 |
|
|
|
158 |
|
|
/* PIC group */
|
159 |
|
|
#define SPR_PICMR (SPRGROUP_PIC + 0)
|
160 |
|
|
#define SPR_PICPR (SPRGROUP_PIC + 1)
|
161 |
|
|
#define SPR_PICSR (SPRGROUP_PIC + 2)
|
162 |
|
|
|
163 |
|
|
/* Tick Timer group */
|
164 |
|
|
#define SPR_TTMR (SPRGROUP_TT + 0)
|
165 |
|
|
#define SPR_TTCR (SPRGROUP_TT + 1)
|
166 |
|
|
|
167 |
|
|
/*
|
168 |
|
|
* Bit definitions for the Version Register
|
169 |
|
|
*
|
170 |
|
|
*/
|
171 |
|
|
#define SPR_VR_VER 0xffff0000 /* Processor version */
|
172 |
|
|
#define SPR_VR_REV 0x0000003f /* Processor revision */
|
173 |
|
|
|
174 |
|
|
/*
|
175 |
|
|
* Bit definitions for the Unit Present Register
|
176 |
|
|
*
|
177 |
|
|
*/
|
178 |
|
|
#define SPR_UPR_UP 0x00000001 /* UPR present */
|
179 |
|
|
#define SPR_UPR_DCP 0x00000002 /* Data cache present */
|
180 |
|
|
#define SPR_UPR_ICP 0x00000004 /* Instruction cache present */
|
181 |
|
|
#define SPR_UPR_DMP 0x00000008 /* Data MMU present */
|
182 |
|
|
#define SPR_UPR_IMP 0x00000010 /* Instruction MMU present */
|
183 |
|
|
#define SPR_UPR_OB32P 0x00000020 /* ORBIS32 present */
|
184 |
|
|
#define SPR_UPR_OB64P 0x00000040 /* ORBIS64 present */
|
185 |
|
|
#define SPR_UPR_OF32P 0x00000080 /* ORFPX32 present */
|
186 |
|
|
#define SPR_UPR_OF64P 0x00000100 /* ORFPX64 present */
|
187 |
|
|
#define SPR_UPR_OV32P 0x00000200 /* ORVDX32 present */
|
188 |
|
|
#define SPR_UPR_OV64P 0x00000400 /* ORVDX64 present */
|
189 |
|
|
#define SPR_UPR_DUP 0x00000800 /* Debug unit present */
|
190 |
|
|
#define SPR_UPR_PCUP 0x00001000 /* Performance counters unit present */
|
191 |
|
|
#define SPR_UPR_PMP 0x00002000 /* Power management present */
|
192 |
|
|
#define SPR_UPR_PICP 0x00004000 /* PIC present */
|
193 |
|
|
#define SPR_UPR_TTP 0x00008000 /* Tick timer present */
|
194 |
|
|
#define SPR_UPR_SRP 0x00010000 /* Shadow registers present */
|
195 |
|
|
#define SPR_UPR_RES 0x00fe0000 /* ORVDX32 present */
|
196 |
|
|
#define SPR_UPR_CUST 0xff000000 /* Custom units */
|
197 |
|
|
|
198 |
|
|
/*
|
199 |
|
|
* Bit definitions for the Supervision Register
|
200 |
|
|
*
|
201 |
|
|
*/
|
202 |
|
|
#define SPR_SR_CID 0xf0000000 /* Context ID */
|
203 |
|
|
#define SPR_SR_FO 0x00008000 /* Fixed one */
|
204 |
|
|
#define SPR_SR_EPH 0x00004000 /* Exception Prefixi High */
|
205 |
|
|
#define SPR_SR_DSX 0x00002000 /* Delay Slot Exception */
|
206 |
|
|
#define SPR_SR_OVE 0x00001000 /* Overflow flag Exception */
|
207 |
|
|
#define SPR_SR_OV 0x00000800 /* Overflow flag */
|
208 |
|
|
#define SPR_SR_CY 0x00000400 /* Carry flag */
|
209 |
|
|
#define SPR_SR_F 0x00000200 /* Condition Flag */
|
210 |
|
|
#define SPR_SR_CE 0x00000100 /* CID Enable */
|
211 |
|
|
#define SPR_SR_LEE 0x00000080 /* Little Endian Enable */
|
212 |
|
|
#define SPR_SR_IME 0x00000040 /* Instruction MMU Enable */
|
213 |
|
|
#define SPR_SR_DME 0x00000020 /* Data MMU Enable */
|
214 |
|
|
#define SPR_SR_ICE 0x00000010 /* Instruction Cache Enable */
|
215 |
|
|
#define SPR_SR_DCE 0x00000008 /* Data Cache Enable */
|
216 |
|
|
#define SPR_SR_IEE 0x00000004 /* Interrupt Exception Enable */
|
217 |
|
|
#define SPR_SR_TEE 0x00000002 /* Tick timer Exception Enable */
|
218 |
|
|
#define SPR_SR_SM 0x00000001 /* Supervisor Mode */
|
219 |
|
|
#define SPR_SR_FO_BIT 15
|
220 |
|
|
#define SPR_SR_EPH_BIT 14
|
221 |
|
|
#define SPR_SR_DSX_BIT 13
|
222 |
|
|
#define SPR_SR_OVE_BIT 12
|
223 |
|
|
#define SPR_SR_OV_BIT 11
|
224 |
|
|
#define SPR_SR_CY_BIT 10
|
225 |
|
|
#define SPR_SR_F_BIT 9
|
226 |
|
|
#define SPR_SR_CE_BIT 8
|
227 |
|
|
#define SPR_SR_LEE_BIT 7
|
228 |
|
|
#define SPR_SR_IME_BIT 6
|
229 |
|
|
#define SPR_SR_DME_BIT 5
|
230 |
|
|
#define SPR_SR_ICE_BIT 4
|
231 |
|
|
#define SPR_SR_DCE_BIT 3
|
232 |
|
|
#define SPR_SR_IEE_BIT 2
|
233 |
|
|
#define SPR_SR_TEE_BIT 1
|
234 |
|
|
#define SPR_SR_SM_BIT 0
|
235 |
|
|
|
236 |
|
|
|
237 |
|
|
/*
|
238 |
|
|
* Bit definitions for the Data MMU Control Register
|
239 |
|
|
*
|
240 |
|
|
*/
|
241 |
|
|
#define SPR_DMMUCR_P2S 0x0000003e /* Level 2 Page Size */
|
242 |
|
|
#define SPR_DMMUCR_P1S 0x000007c0 /* Level 1 Page Size */
|
243 |
|
|
#define SPR_DMMUCR_VADDR_WIDTH 0x0000f800 /* Virtual ADDR Width */
|
244 |
|
|
#define SPR_DMMUCR_PADDR_WIDTH 0x000f0000 /* Physical ADDR Width */
|
245 |
|
|
|
246 |
|
|
/*
|
247 |
|
|
* Bit definitions for the Instruction MMU Control Register
|
248 |
|
|
*
|
249 |
|
|
*/
|
250 |
|
|
#define SPR_IMMUCR_P2S 0x0000003e /* Level 2 Page Size */
|
251 |
|
|
#define SPR_IMMUCR_P1S 0x000007c0 /* Level 1 Page Size */
|
252 |
|
|
#define SPR_IMMUCR_VADDR_WIDTH 0x0000f800 /* Virtual ADDR Width */
|
253 |
|
|
#define SPR_IMMUCR_PADDR_WIDTH 0x000f0000 /* Physical ADDR Width */
|
254 |
|
|
|
255 |
|
|
/*
|
256 |
|
|
* Bit definitions for the Data TLB Match Register
|
257 |
|
|
*
|
258 |
|
|
*/
|
259 |
|
|
#define SPR_DTLBMR_V 0x00000001 /* Valid */
|
260 |
|
|
#define SPR_DTLBMR_PL1 0x00000002 /* Page Level 1 (if 0 then PL2) */
|
261 |
|
|
#define SPR_DTLBMR_CID 0x0000003c /* Context ID */
|
262 |
|
|
#define SPR_DTLBMR_LRU 0x000000c0 /* Least Recently Used */
|
263 |
|
|
#define SPR_DTLBMR_VPN 0xfffff000 /* Virtual Page Number */
|
264 |
|
|
|
265 |
|
|
/*
|
266 |
|
|
* Bit definitions for the Data TLB Translate Register
|
267 |
|
|
*
|
268 |
|
|
*/
|
269 |
|
|
#define SPR_DTLBTR_CC 0x00000001 /* Cache Coherency */
|
270 |
|
|
#define SPR_DTLBTR_CI 0x00000002 /* Cache Inhibit */
|
271 |
|
|
#define SPR_DTLBTR_WBC 0x00000004 /* Write-Back Cache */
|
272 |
|
|
#define SPR_DTLBTR_WOM 0x00000008 /* Weakly-Ordered Memory */
|
273 |
|
|
#define SPR_DTLBTR_A 0x00000010 /* Accessed */
|
274 |
|
|
#define SPR_DTLBTR_D 0x00000020 /* Dirty */
|
275 |
|
|
#define SPR_DTLBTR_URE 0x00000040 /* User Read Enable */
|
276 |
|
|
#define SPR_DTLBTR_UWE 0x00000080 /* User Write Enable */
|
277 |
|
|
#define SPR_DTLBTR_SRE 0x00000100 /* Supervisor Read Enable */
|
278 |
|
|
#define SPR_DTLBTR_SWE 0x00000200 /* Supervisor Write Enable */
|
279 |
|
|
#define SPR_DTLBTR_PPN 0xfffff000 /* Physical Page Number */
|
280 |
|
|
#define DTLBTR_NO_LIMIT ( SPR_DTLBTR_URE | \
|
281 |
|
|
SPR_DTLBTR_UWE | \
|
282 |
|
|
SPR_DTLBTR_SRE | \
|
283 |
|
|
SPR_DTLBTR_SWE )
|
284 |
|
|
|
285 |
|
|
/*
|
286 |
|
|
* Bit definitions for the Instruction TLB Match Register
|
287 |
|
|
*
|
288 |
|
|
*/
|
289 |
|
|
#define SPR_ITLBMR_V 0x00000001 /* Valid */
|
290 |
|
|
#define SPR_ITLBMR_PL1 0x00000002 /* Page Level 1 (if 0 then PL2) */
|
291 |
|
|
#define SPR_ITLBMR_CID 0x0000003c /* Context ID */
|
292 |
|
|
#define SPR_ITLBMR_LRU 0x000000c0 /* Least Recently Used */
|
293 |
|
|
#define SPR_ITLBMR_VPN 0xfffff000 /* Virtual Page Number */
|
294 |
|
|
|
295 |
|
|
/*
|
296 |
|
|
* Bit definitions for the Instruction TLB Translate Register
|
297 |
|
|
*
|
298 |
|
|
*/
|
299 |
|
|
#define SPR_ITLBTR_CC 0x00000001 /* Cache Coherency */
|
300 |
|
|
#define SPR_ITLBTR_CI 0x00000002 /* Cache Inhibit */
|
301 |
|
|
#define SPR_ITLBTR_WBC 0x00000004 /* Write-Back Cache */
|
302 |
|
|
#define SPR_ITLBTR_WOM 0x00000008 /* Weakly-Ordered Memory */
|
303 |
|
|
#define SPR_ITLBTR_A 0x00000010 /* Accessed */
|
304 |
|
|
#define SPR_ITLBTR_D 0x00000020 /* Dirty */
|
305 |
|
|
#define SPR_ITLBTR_SXE 0x00000040 /* User Read Enable */
|
306 |
|
|
#define SPR_ITLBTR_UXE 0x00000080 /* User Write Enable */
|
307 |
|
|
#define SPR_ITLBTR_PPN 0xfffff000 /* Physical Page Number */
|
308 |
|
|
#define ITLBTR_NO_LIMIT (SPR_ITLBTR_SXE | SPR_ITLBTR_UXE)
|
309 |
|
|
|
310 |
|
|
/*
|
311 |
|
|
* Bit definitions for Data Cache Control register
|
312 |
|
|
*
|
313 |
|
|
*/
|
314 |
|
|
#define SPR_DCCR_EW 0x000000ff /* Enable ways */
|
315 |
|
|
|
316 |
|
|
/*
|
317 |
|
|
* Bit definitions for Insn Cache Control register
|
318 |
|
|
*
|
319 |
|
|
*/
|
320 |
|
|
#define SPR_ICCR_EW 0x000000ff /* Enable ways */
|
321 |
|
|
|
322 |
|
|
/*
|
323 |
|
|
* Bit definitions for Debug Control registers
|
324 |
|
|
*
|
325 |
|
|
*/
|
326 |
|
|
#define SPR_DCR_DP 0x00000001 /* DVR/DCR present */
|
327 |
|
|
#define SPR_DCR_CC 0x0000000e /* Compare condition */
|
328 |
|
|
#define SPR_DCR_SC 0x00000010 /* Signed compare */
|
329 |
|
|
#define SPR_DCR_CT 0x000000e0 /* Compare to */
|
330 |
|
|
|
331 |
|
|
/*
|
332 |
|
|
* Bit definitions for Debug Mode 1 register
|
333 |
|
|
*
|
334 |
|
|
*/
|
335 |
|
|
#define SPR_DMR1_CW0 0x00000003 /* Chain watchpoint 0 */
|
336 |
|
|
#define SPR_DMR1_CW1 0x0000000c /* Chain watchpoint 1 */
|
337 |
|
|
#define SPR_DMR1_CW2 0x00000030 /* Chain watchpoint 2 */
|
338 |
|
|
#define SPR_DMR1_CW3 0x000000c0 /* Chain watchpoint 3 */
|
339 |
|
|
#define SPR_DMR1_CW4 0x00000300 /* Chain watchpoint 4 */
|
340 |
|
|
#define SPR_DMR1_CW5 0x00000c00 /* Chain watchpoint 5 */
|
341 |
|
|
#define SPR_DMR1_CW6 0x00003000 /* Chain watchpoint 6 */
|
342 |
|
|
#define SPR_DMR1_CW7 0x0000c000 /* Chain watchpoint 7 */
|
343 |
|
|
#define SPR_DMR1_CW8 0x00030000 /* Chain watchpoint 8 */
|
344 |
|
|
#define SPR_DMR1_CW9 0x000c0000 /* Chain watchpoint 9 */
|
345 |
|
|
#define SPR_DMR1_CW10 0x00300000 /* Chain watchpoint 10 */
|
346 |
|
|
#define SPR_DMR1_ST 0x00400000 /* Single-step trace*/
|
347 |
|
|
#define SPR_DMR1_BT 0x00800000 /* Branch trace */
|
348 |
|
|
#define SPR_DMR1_DXFW 0x01000000 /* Disable external force watchpoint */
|
349 |
|
|
|
350 |
|
|
/*
|
351 |
|
|
* Bit definitions for Debug Mode 2 register
|
352 |
|
|
*
|
353 |
|
|
*/
|
354 |
|
|
#define SPR_DMR2_WCE0 0x00000001 /* Watchpoint counter 0 enable */
|
355 |
|
|
#define SPR_DMR2_WCE1 0x00000002 /* Watchpoint counter 0 enable */
|
356 |
|
|
#define SPR_DMR2_AWTC 0x00001ffc /* Assign watchpoints to counters */
|
357 |
|
|
#define SPR_DMR2_WGB 0x00ffe000 /* Watchpoints generating breakpoint */
|
358 |
|
|
|
359 |
|
|
/*
|
360 |
|
|
* Bit definitions for Debug watchpoint counter registers
|
361 |
|
|
*
|
362 |
|
|
*/
|
363 |
|
|
#define SPR_DWCR_COUNT 0x0000ffff /* Count */
|
364 |
|
|
#define SPR_DWCR_MATCH 0xffff0000 /* Match */
|
365 |
|
|
|
366 |
|
|
/*
|
367 |
|
|
* Bit definitions for Debug stop register
|
368 |
|
|
*
|
369 |
|
|
*/
|
370 |
|
|
#define SPR_DSR_RSTE 0x00000001 /* Reset exception */
|
371 |
|
|
#define SPR_DSR_BUSEE 0x00000002 /* Bus error exception */
|
372 |
|
|
#define SPR_DSR_DPFE 0x00000004 /* Data Page Fault exception */
|
373 |
|
|
#define SPR_DSR_IPFE 0x00000008 /* Insn Page Fault exception */
|
374 |
|
|
#define SPR_DSR_LPINTE 0x00000010 /* Low priority interrupt exception */
|
375 |
|
|
#define SPR_DSR_AE 0x00000020 /* Alignment exception */
|
376 |
|
|
#define SPR_DSR_IIE 0x00000040 /* Illegal Instruction exception */
|
377 |
|
|
#define SPR_DSR_HPINTE 0x00000080 /* High priority interrupt exception */
|
378 |
|
|
#define SPR_DSR_DME 0x00000100 /* DTLB miss exception */
|
379 |
|
|
#define SPR_DSR_IME 0x00000200 /* ITLB miss exception */
|
380 |
|
|
#define SPR_DSR_RE 0x00000400 /* Range exception */
|
381 |
|
|
#define SPR_DSR_SCE 0x00000800 /* System call exception */
|
382 |
|
|
#define SPR_DSR_BE 0x00001000 /* Breakpoint exception */
|
383 |
|
|
|
384 |
|
|
/*
|
385 |
|
|
* Bit definitions for Debug reason register
|
386 |
|
|
*
|
387 |
|
|
*/
|
388 |
|
|
#define SPR_DRR_RSTE 0x00000001 /* Reset exception */
|
389 |
|
|
#define SPR_DRR_BUSEE 0x00000002 /* Bus error exception */
|
390 |
|
|
#define SPR_DRR_DPFE 0x00000004 /* Data Page Fault exception */
|
391 |
|
|
#define SPR_DRR_IPFE 0x00000008 /* Insn Page Fault exception */
|
392 |
|
|
#define SPR_DRR_LPINTE 0x00000010 /* Low priority interrupt exception */
|
393 |
|
|
#define SPR_DRR_AE 0x00000020 /* Alignment exception */
|
394 |
|
|
#define SPR_DRR_IIE 0x00000040 /* Illegal Instruction exception */
|
395 |
|
|
#define SPR_DRR_HPINTE 0x00000080 /* High priority interrupt exception */
|
396 |
|
|
#define SPR_DRR_DME 0x00000100 /* DTLB miss exception */
|
397 |
|
|
#define SPR_DRR_IME 0x00000200 /* ITLB miss exception */
|
398 |
|
|
#define SPR_DRR_RE 0x00000400 /* Range exception */
|
399 |
|
|
#define SPR_DRR_SCE 0x00000800 /* System call exception */
|
400 |
|
|
#define SPR_DRR_BE 0x00001000 /* Breakpoint exception */
|
401 |
|
|
|
402 |
|
|
/*
|
403 |
|
|
* Bit definitions for Performance counters mode registers
|
404 |
|
|
*
|
405 |
|
|
*/
|
406 |
|
|
#define SPR_PCMR_CP 0x00000001 /* Counter present */
|
407 |
|
|
#define SPR_PCMR_UMRA 0x00000002 /* User mode read access */
|
408 |
|
|
#define SPR_PCMR_CISM 0x00000004 /* Count in supervisor mode */
|
409 |
|
|
#define SPR_PCMR_CIUM 0x00000008 /* Count in user mode */
|
410 |
|
|
#define SPR_PCMR_LA 0x00000010 /* Load access event */
|
411 |
|
|
#define SPR_PCMR_SA 0x00000020 /* Store access event */
|
412 |
|
|
#define SPR_PCMR_IF 0x00000040 /* Instruction fetch event*/
|
413 |
|
|
#define SPR_PCMR_DCM 0x00000080 /* Data cache miss event */
|
414 |
|
|
#define SPR_PCMR_ICM 0x00000100 /* Insn cache miss event */
|
415 |
|
|
#define SPR_PCMR_IFS 0x00000200 /* Insn fetch stall event */
|
416 |
|
|
#define SPR_PCMR_LSUS 0x00000400 /* LSU stall event */
|
417 |
|
|
#define SPR_PCMR_BS 0x00000800 /* Branch stall event */
|
418 |
|
|
#define SPR_PCMR_DTLBM 0x00001000 /* DTLB miss event */
|
419 |
|
|
#define SPR_PCMR_ITLBM 0x00002000 /* ITLB miss event */
|
420 |
|
|
#define SPR_PCMR_DDS 0x00004000 /* Data dependency stall event */
|
421 |
|
|
#define SPR_PCMR_WPE 0x03ff8000 /* Watchpoint events */
|
422 |
|
|
|
423 |
|
|
/*
|
424 |
|
|
* Bit definitions for the Power management register
|
425 |
|
|
*
|
426 |
|
|
*/
|
427 |
|
|
#define SPR_PMR_SDF 0x00000001 /* Slow down factor */
|
428 |
|
|
#define SPR_PMR_DME 0x00000002 /* Doze mode enable */
|
429 |
|
|
#define SPR_PMR_SME 0x00000004 /* Sleep mode enable */
|
430 |
|
|
#define SPR_PMR_DCGE 0x00000008 /* Dynamic clock gating enable */
|
431 |
|
|
#define SPR_PMR_SUME 0x00000010 /* Suspend mode enable */
|
432 |
|
|
|
433 |
|
|
/*
|
434 |
|
|
* Bit definitions for PICMR
|
435 |
|
|
*
|
436 |
|
|
*/
|
437 |
|
|
#define SPR_PICMR_IUM 0xfffffffc /* Interrupt unmask */
|
438 |
|
|
|
439 |
|
|
/*
|
440 |
|
|
* Bit definitions for PICPR
|
441 |
|
|
*
|
442 |
|
|
*/
|
443 |
|
|
#define SPR_PICPR_IPRIO 0xfffffffc /* Interrupt priority */
|
444 |
|
|
|
445 |
|
|
/*
|
446 |
|
|
* Bit definitions for PICSR
|
447 |
|
|
*
|
448 |
|
|
*/
|
449 |
|
|
#define SPR_PICSR_IS 0xffffffff /* Interrupt status */
|
450 |
|
|
|
451 |
|
|
/*
|
452 |
|
|
* Bit definitions for Tick Timer Control Register
|
453 |
|
|
*
|
454 |
|
|
*/
|
455 |
|
|
#define SPR_TTCR_PERIOD 0x0fffffff /* Time Period */
|
456 |
|
|
#define SPR_TTMR_PERIOD SPR_TTCR_PERIOD
|
457 |
|
|
#define SPR_TTMR_IP 0x10000000 /* Interrupt Pending */
|
458 |
|
|
#define SPR_TTMR_IE 0x20000000 /* Interrupt Enable */
|
459 |
|
|
#define SPR_TTMR_RT 0x40000000 /* Restart tick */
|
460 |
|
|
#define SPR_TTMR_SR 0x80000000 /* Single run */
|
461 |
|
|
#define SPR_TTMR_CR 0xc0000000 /* Continuous run */
|
462 |
|
|
#define SPR_TTMR_M 0xc0000000 /* Tick mode */
|
463 |
|
|
|
464 |
|
|
#endif
|