OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_42/] [or1ksim/] [cpu/] [or1k/] [spr_defs.h] - Blame information for rev 133

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 64 lampret
/* spr_defs.h -- Defines OR1K architecture specific special-purpose registers
2
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
3
 
4
This file is part of OpenRISC 1000 Architectural Simulator.
5
 
6
This program is free software; you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation; either version 2 of the License, or
9
(at your option) any later version.
10
 
11
This program is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
GNU General Public License for more details.
15
 
16
You should have received a copy of the GNU General Public License
17
along with this program; if not, write to the Free Software
18
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
 
20
/* This file is also used by microkernel test bench. Among
21
others it is also used in assembly file(s). */
22
 
23
/* Definition of special-purpose registers (SPRs) */
24
 
25
#define MAX_GRPS 32
26
#define MAX_SPRS_PER_GRP 0x1000
27
#define MAX_SPRS (MAX_GRPS * 0x1000000 / MAX_SPRS_PER_GRP)
28
 
29
/* Base addresses for the groups */
30
#define SPRGROUP_SYS    0x00000000
31
#define SPRGROUP_DMMU   0x01000000
32
#define SPRGROUP_IMMU   0x02000000
33
#define SPRGROUP_DC     0x03000000
34
#define SPRGROUP_IC     0x04000000
35
#define SPRGROUP_MAC    0x05000000
36 102 lampret
#define SPRGROUP_D      0x06000000
37
#define SPRGROUP_PC     0x07000000
38
#define SPRGROUP_PM     0x08000000
39
#define SPRGROUP_PIC    0x09000000
40
#define SPRGROUP_TT     0x0A000000
41 64 lampret
 
42
/* System control and status group */
43
#define SPR_VR          (SPRGROUP_SYS + 0)
44 102 lampret
#define SPR_UPR         (SPRGROUP_SYS + 1)
45 64 lampret
#define SPR_SR          (SPRGROUP_SYS + 2)
46
#define SPR_EPCR_BASE   (SPRGROUP_SYS + 16)
47
#define SPR_EPCR_LAST   (SPRGROUP_SYS + 31)
48
#define SPR_EEAR_BASE   (SPRGROUP_SYS + 48)
49
#define SPR_EEAR_LAST   (SPRGROUP_SYS + 63)
50
#define SPR_ESR_BASE    (SPRGROUP_SYS + 64)
51
#define SPR_ESR_LAST    (SPRGROUP_SYS + 79)
52
 
53
/* Data MMU group */
54
#define SPR_DMMUCR      (SPRGROUP_DMMU + 0)
55
#define SPR_DTLBMR_BASE(WAY)    (SPRGROUP_DMMU + 0x200 + (WAY) * 0x200)
56
#define SPR_DTLBMR_LAST(WAY)    (SPRGROUP_DMMU + 0x2ff + (WAY) * 0x200)
57
#define SPR_DTLBTR_BASE(WAY)    (SPRGROUP_DMMU + 0x300 + (WAY) * 0x200)
58
#define SPR_DTLBTR_LAST(WAY)    (SPRGROUP_DMMU + 0x3ff + (WAY) * 0x200)
59
 
60
/* Instruction MMU group */
61
#define SPR_IMMUCR      (SPRGROUP_IMMU + 0)
62
#define SPR_ITLBMR_BASE(WAY)    (SPRGROUP_IMMU + 0x200 + (WAY) * 0x200)
63
#define SPR_ITLBMR_LAST(WAY)    (SPRGROUP_IMMU + 0x2ff + (WAY) * 0x200)
64
#define SPR_ITLBTR_BASE(WAY)    (SPRGROUP_IMMU + 0x300 + (WAY) * 0x200)
65
#define SPR_ITLBTR_LAST(WAY)    (SPRGROUP_IMMU + 0x3ff + (WAY) * 0x200)
66
 
67
/* Data cache group */
68
#define SPR_DCCR        (SPRGROUP_DC + 0)
69 102 lampret
#define SPR_DCBPR       (SPRGROUP_DC + 1)
70
#define SPR_DCBFR       (SPRGROUP_DC + 2)
71
#define SPR_DCBIR       (SPRGROUP_DC + 3)
72
#define SPR_DCBWR       (SPRGROUP_DC + 4)
73
#define SPR_DCBLR       (SPRGROUP_DC + 5)
74 64 lampret
#define SPR_DCR_BASE(WAY)       (SPRGROUP_DC + 0x200 + (WAY) * 0x200)
75
#define SPR_DCR_LAST(WAY)       (SPRGROUP_DC + 0x3ff + (WAY) * 0x200)
76
 
77
/* Instruction cache group */
78
#define SPR_ICCR        (SPRGROUP_IC + 0)
79 102 lampret
#define SPR_ICBPR       (SPRGROUP_IC + 1)
80
#define SPR_ICBIR       (SPRGROUP_IC + 2)
81
#define SPR_ICBLR       (SPRGROUP_IC + 3)
82 64 lampret
#define SPR_ICR_BASE(WAY)       (SPRGROUP_IC + 0x200 + (WAY) * 0x200)
83
#define SPR_ICR_LAST(WAY)       (SPRGROUP_IC + 0x3ff + (WAY) * 0x200)
84
 
85
/* MAC group */
86 102 lampret
#define SPR_MACLO       (SPRGROUP_MAC + 1)
87
#define SPR_MACHI       (SPRGROUP_MAC + 2)
88 64 lampret
 
89 102 lampret
/* Debug group */
90
#define SPR_DVR(N)      (SPRGROUP_D + (N))
91
#define SPR_DCR(N)      (SPRGROUP_D + 8 + (N))
92
#define SPR_DMR1        (SPRGROUP_D + 16)
93
#define SPR_DMR2        (SPRGROUP_D + 17)
94
#define SPR_DWCR0       (SPRGROUP_D + 18)
95
#define SPR_DWCR1       (SPRGROUP_D + 19)
96
#define SPR_DSR         (SPRGROUP_D + 20)
97
#define SPR_DRR         (SPRGROUP_D + 21)
98
#define SPR_DIR         (SPRGROUP_D + 22)
99
 
100
/* Performance counters group */
101
#define SPR_PCCR(N)     (SPRGROUP_PC + (N))
102
#define SPR_PCMR(N)     (SPRGROUP_PC + 8 + (N))
103
 
104
/* Power management group */
105
#define SPR_PMR (SPRGROUP_PM + 0)
106
 
107
/* PIC group */
108
#define SPR_PICMR (SPRGROUP_PIC + 0)
109
#define SPR_PICPR (SPRGROUP_PIC + 1)
110
#define SPR_PICSR (SPRGROUP_PIC + 2)
111
 
112 90 lampret
/* Tick Timer group */
113 133 markom
#define SPR_TTMR (SPRGROUP_TT + 0)
114
#define SPR_TTCR (SPRGROUP_TT + 1)
115 90 lampret
 
116 64 lampret
/*
117
 * Bit definitions for the Version Register
118
 *
119
 */
120
#define SPR_VR_VER      0xffff0000  /* Processor version */
121
#define SPR_VR_REV      0x0000003f  /* Processor revision */
122
 
123
/*
124 102 lampret
 * Bit definitions for the Unit Present Register
125 64 lampret
 *
126
 */
127 102 lampret
#define SPR_UPR_UP      0x00000001  /* UPR present */
128
#define SPR_UPR_DCP     0x00000002  /* Data cache present */
129
#define SPR_UPR_ICP     0x00000004  /* Instruction cache present */
130
#define SPR_UPR_DMP     0x00000008  /* Data MMU present */
131
#define SPR_UPR_IMP     0x00000010  /* Instruction MMU present */
132
#define SPR_UPR_OB32P   0x00000020  /* ORBIS32 present */
133
#define SPR_UPR_OB64P   0x00000040  /* ORBIS64 present */
134
#define SPR_UPR_OF32P   0x00000080  /* ORFPX32 present */
135
#define SPR_UPR_OF64P   0x00000100  /* ORFPX64 present */
136
#define SPR_UPR_OV32P   0x00000200  /* ORVDX32 present */
137
#define SPR_UPR_OV64P   0x00000400  /* ORVDX64 present */
138
#define SPR_UPR_DUP     0x00000800  /* Debug unit present */
139
#define SPR_UPR_PCUP    0x00001000  /* Performance counters unit present */
140
#define SPR_UPR_PMP     0x00002000  /* Power management present */
141
#define SPR_UPR_PICP    0x00004000  /* PIC present */
142
#define SPR_UPR_TTP     0x00008000  /* Tick timer present */
143
#define SPR_UPR_SRP     0x00010000  /* Shadow registers present */
144
#define SPR_UPR_RES     0x00fe0000  /* ORVDX32 present */
145
#define SPR_UPR_CUST    0xff000000  /* Custom units */
146 64 lampret
 
147
/*
148
 * Bit definitions for the Supervision Register
149
 *
150
 */
151
#define SPR_SR_CID      0xf0000000  /* Context ID */
152 102 lampret
#define SPR_SR_PXR      0x00008000  /* Partial exception recognition */
153
#define SPR_SR_EP       0x00004000  /* Exception Prefix */
154
#define SPR_SR_DSX      0x00002000  /* Delay Slot Exception */
155
#define SPR_SR_OVE      0x00001000  /* Overflow flag Exception */
156
#define SPR_SR_OV       0x00000800  /* Overflow flag */
157
#define SPR_SR_CY       0x00000400  /* Carry flag */
158
#define SPR_SR_F        0x00000200  /* Condition Flag */
159
#define SPR_SR_CE       0x00000100  /* CID Enable */
160 64 lampret
#define SPR_SR_LEE      0x00000080  /* Little Endian Enable */
161
#define SPR_SR_IME      0x00000040  /* Instruction MMU Enable */
162
#define SPR_SR_DME      0x00000020  /* Data MMU Enable */
163
#define SPR_SR_ICE      0x00000010  /* Instruction Cache Enable */
164
#define SPR_SR_DCE      0x00000008  /* Data Cache Enable */
165
#define SPR_SR_EIR      0x00000004  /* External Interrupt Recognition */
166
#define SPR_SR_EXR      0x00000002  /* Exception Recognition */
167
#define SPR_SR_SUPV     0x00000001  /* Supervisor mode */
168
 
169
/*
170
 * Bit definitions for the Data MMU Control Register
171
 *
172
 */
173
#define SPR_DMMUCR_P2S  0x0000003e  /* Level 2 Page Size */
174
#define SPR_DMMUCR_P1S  0x000007c0  /* Level 1 Page Size */
175
#define SPR_DMMUCR_VADDR_WIDTH  0x0000f800  /* Virtual ADDR Width */
176
#define SPR_DMMUCR_PADDR_WIDTH  0x000f0000  /* Physical ADDR Width */
177
 
178
/*
179
 * Bit definitions for the Instruction MMU Control Register
180
 *
181
 */
182
#define SPR_IMMUCR_P2S  0x0000003e  /* Level 2 Page Size */
183
#define SPR_IMMUCR_P1S  0x000007c0  /* Level 1 Page Size */
184
#define SPR_IMMUCR_VADDR_WIDTH  0x0000f800  /* Virtual ADDR Width */
185
#define SPR_IMMUCR_PADDR_WIDTH  0x000f0000  /* Physical ADDR Width */
186
 
187
/*
188
 * Bit definitions for the Data TLB Match Register
189
 *
190
 */
191
#define SPR_DTLBMR_V    0x00000001  /* Valid */
192
#define SPR_DTLBMR_PL1  0x00000002  /* Page Level 1 (if 0 then PL2) */
193
#define SPR_DTLBMR_CID  0x0000003c  /* Context ID */
194
#define SPR_DTLBMR_LRU  0x000000c0  /* Least Recently Used */
195 77 lampret
#define SPR_DTLBMR_VPN  0xfffff000  /* Virtual Page Number */
196 64 lampret
 
197
/*
198
 * Bit definitions for the Data TLB Translate Register
199
 *
200
 */
201
#define SPR_DTLBTR_CC   0x00000001  /* Cache Coherency */
202
#define SPR_DTLBTR_CI   0x00000002  /* Cache Inhibit */
203
#define SPR_DTLBTR_WBC  0x00000004  /* Write-Back Cache */
204
#define SPR_DTLBTR_WOM  0x00000008  /* Weakly-Ordered Memory */
205
#define SPR_DTLBTR_A    0x00000010  /* Accessed */
206
#define SPR_DTLBTR_D    0x00000020  /* Dirty */
207
#define SPR_DTLBTR_URE  0x00000040  /* User Read Enable */
208
#define SPR_DTLBTR_UWE  0x00000080  /* User Write Enable */
209
#define SPR_DTLBTR_SRE  0x00000100  /* Supervisor Read Enable */
210
#define SPR_DTLBTR_SWE  0x00000200  /* Supervisor Write Enable */
211 77 lampret
#define SPR_DTLBTR_PPN  0xfffff000  /* Physical Page Number */
212 64 lampret
 
213
/*
214
 * Bit definitions for the Instruction TLB Match Register
215
 *
216
 */
217
#define SPR_ITLBMR_V    0x00000001  /* Valid */
218
#define SPR_ITLBMR_PL1  0x00000002  /* Page Level 1 (if 0 then PL2) */
219
#define SPR_ITLBMR_CID  0x0000003c  /* Context ID */
220
#define SPR_ITLBMR_LRU  0x000000c0  /* Least Recently Used */
221 77 lampret
#define SPR_ITLBMR_VPN  0xfffff000  /* Virtual Page Number */
222 64 lampret
 
223
/*
224
 * Bit definitions for the Instruction TLB Translate Register
225
 *
226
 */
227
#define SPR_ITLBTR_CC   0x00000001  /* Cache Coherency */
228
#define SPR_ITLBTR_CI   0x00000002  /* Cache Inhibit */
229
#define SPR_ITLBTR_WBC  0x00000004  /* Write-Back Cache */
230
#define SPR_ITLBTR_WOM  0x00000008  /* Weakly-Ordered Memory */
231
#define SPR_ITLBTR_A    0x00000010  /* Accessed */
232
#define SPR_ITLBTR_D    0x00000020  /* Dirty */
233
#define SPR_ITLBTR_URE  0x00000040  /* User Read Enable */
234
#define SPR_ITLBTR_UWE  0x00000080  /* User Write Enable */
235
#define SPR_ITLBTR_SRE  0x00000100  /* Supervisor Read Enable */
236
#define SPR_ITLBTR_SWE  0x00000200  /* Supervisor Write Enable (not used actually) */
237 77 lampret
#define SPR_ITLBTR_PPN  0xfffff000  /* Physical Page Number */
238 64 lampret
 
239 90 lampret
/*
240 102 lampret
 * Bit definitions for Data Cache Control register
241
 *
242
 */
243
#define SPR_DCCR_EW     0x000000ff  /* Enable ways */
244
 
245
/*
246
 * Bit definitions for Insn Cache Control register
247
 *
248
 */
249
#define SPR_ICCR_EW     0x000000ff  /* Enable ways */
250
 
251
/*
252
 * Bit definitions for Debug Control registers
253
 *
254
 */
255
#define SPR_DCR_DP      0x00000001  /* DVR/DCR present */
256
#define SPR_DCR_CC      0x0000000e  /* Compare condition */
257
#define SPR_DCR_SC      0x00000010  /* Signed compare */
258
#define SPR_DCR_CT      0x000000e0  /* Compare to */
259
 
260
/*
261
 * Bit definitions for Debug Mode 1 register
262
 *
263
 */
264
#define SPR_DMR1_CW0    0x00000003  /* Chain watchpoint 0 */
265
#define SPR_DMR1_CW1    0x0000000c  /* Chain watchpoint 1 */
266
#define SPR_DMR1_CW2    0x00000030  /* Chain watchpoint 2 */
267
#define SPR_DMR1_CW3    0x000000c0  /* Chain watchpoint 3 */
268
#define SPR_DMR1_CW4    0x00000300  /* Chain watchpoint 4 */
269
#define SPR_DMR1_CW5    0x00000c00  /* Chain watchpoint 5 */
270
#define SPR_DMR1_CW6    0x00003000  /* Chain watchpoint 6 */
271
#define SPR_DMR1_CW7    0x0000c000  /* Chain watchpoint 7 */
272
#define SPR_DMR1_CW8    0x00030000  /* Chain watchpoint 8 */
273
#define SPR_DMR1_CW9    0x000c0000  /* Chain watchpoint 9 */
274
#define SPR_DMR1_CW10   0x00300000  /* Chain watchpoint 10 */
275
#define SPR_DMR1_ST     0x00400000  /* Single-step trace*/
276
#define SPR_DMR1_BT     0x00800000  /* Branch trace */
277
#define SPR_DMR1_DXFW   0x01000000  /* Disable external force watchpoint */
278
 
279
/*
280
 * Bit definitions for Debug Mode 2 register
281
 *
282
 */
283
#define SPR_DMR2_WCE0   0x00000001  /* Watchpoint counter 0 enable */
284
#define SPR_DMR2_WCE1   0x00000002  /* Watchpoint counter 0 enable */
285
#define SPR_DMR2_AWTC   0x00001ffc  /* Assign watchpoints to counters */
286
#define SPR_DMR2_WGB    0x00ffe000  /* Watchpoints generating breakpoint */
287
 
288
/*
289
 * Bit definitions for Debug watchpoint counter registers
290
 *
291
 */
292
#define SPR_DWCR_COUNT  0x0000ffff  /* Count */
293
#define SPR_DWCR_MATCH  0xffff0000  /* Match */
294
 
295
/*
296
 * Bit definitions for Debug stop register
297
 *
298
 */
299
#define SPR_DSR_RSTE    0x00000001  /* Reset exception */
300
#define SPR_DSR_BUSEE   0x00000002  /* Bus error exception */
301
#define SPR_DSR_DPFE    0x00000004  /* Data Page Fault exception */
302
#define SPR_DSR_IPFE    0x00000008  /* Insn Page Fault exception */
303
#define SPR_DSR_LPINTE  0x00000010  /* Low priority interrupt exception */
304
#define SPR_DSR_AE      0x00000020  /* Alignment exception */
305
#define SPR_DSR_IIE     0x00000040  /* Illegal Instruction exception */
306
#define SPR_DSR_HPINTE  0x00000080  /* High priority interrupt exception */
307
#define SPR_DSR_DME     0x00000100  /* DTLB miss exception */
308
#define SPR_DSR_IME     0x00000200  /* ITLB miss exception */
309
#define SPR_DSR_RE      0x00000400  /* Range exception */
310
#define SPR_DSR_SCE     0x00000800  /* System call exception */
311
#define SPR_DSR_BE      0x00001000  /* Breakpoint exception */
312
 
313
/*
314
 * Bit definitions for Debug reason register
315
 *
316
 */
317
#define SPR_DRR_RSTE    0x00000001  /* Reset exception */
318
#define SPR_DRR_BUSEE   0x00000002  /* Bus error exception */
319
#define SPR_DRR_DPFE    0x00000004  /* Data Page Fault exception */
320
#define SPR_DRR_IPFE    0x00000008  /* Insn Page Fault exception */
321
#define SPR_DRR_LPINTE  0x00000010  /* Low priority interrupt exception */
322
#define SPR_DRR_AE      0x00000020  /* Alignment exception */
323
#define SPR_DRR_IIE     0x00000040  /* Illegal Instruction exception */
324
#define SPR_DRR_HPINTE  0x00000080  /* High priority interrupt exception */
325
#define SPR_DRR_DME     0x00000100  /* DTLB miss exception */
326
#define SPR_DRR_IME     0x00000200  /* ITLB miss exception */
327
#define SPR_DRR_RE      0x00000400  /* Range exception */
328
#define SPR_DRR_SCE     0x00000800  /* System call exception */
329
#define SPR_DRR_BE      0x00001000  /* Breakpoint exception */
330
 
331
/*
332
 * Bit definitions for Performance counters mode registers
333
 *
334
 */
335
#define SPR_PCMR_CP     0x00000001  /* Counter present */
336
#define SPR_PCMR_UMRA   0x00000002  /* User mode read access */
337
#define SPR_PCMR_CISM   0x00000004  /* Count in supervisor mode */
338
#define SPR_PCMR_CIUM   0x00000008  /* Count in user mode */
339
#define SPR_PCMR_LA     0x00000010  /* Load access event */
340
#define SPR_PCMR_SA     0x00000020  /* Store access event */
341
#define SPR_PCMR_IF     0x00000040  /* Instruction fetch event*/
342
#define SPR_PCMR_DCM    0x00000080  /* Data cache miss event */
343
#define SPR_PCMR_ICM    0x00000100  /* Insn cache miss event */
344
#define SPR_PCMR_IFS    0x00000200  /* Insn fetch stall event */
345
#define SPR_PCMR_LSUS   0x00000400  /* LSU stall event */
346
#define SPR_PCMR_BS     0x00000800  /* Branch stall event */
347
#define SPR_PCMR_DTLBM  0x00001000  /* DTLB miss event */
348
#define SPR_PCMR_ITLBM  0x00002000  /* ITLB miss event */
349
#define SPR_PCMR_DDS    0x00004000  /* Data dependency stall event */
350
#define SPR_PCMR_WPE    0x03ff8000  /* Watchpoint events */
351
 
352
/*
353
 * Bit definitions for the Power management register
354
 *
355
 */
356
#define SPR_PMR_SDF     0x00000001  /* Slow down factor */
357
#define SPR_PMR_DME     0x00000002  /* Doze mode enable */
358
#define SPR_PMR_SME     0x00000004  /* Sleep mode enable */
359
#define SPR_PMR_DCGE    0x00000008  /* Dynamic clock gating enable */
360
#define SPR_PMR_SUME    0x00000010  /* Suspend mode enable */
361
 
362
/*
363
 * Bit definitions for PICMR
364
 *
365
 */
366
#define SPR_PICMR_IUM   0xfffffffc  /* Interrupt unmask */
367
 
368
/*
369
 * Bit definitions for PICPR
370
 *
371
 */
372
#define SPR_PICPR_IPRIO 0xfffffffc  /* Interrupt priority */
373
 
374
/*
375
 * Bit definitions for PICSR
376
 *
377
 */
378
#define SPR_PICSR_IS    0xffffffff  /* Interrupt status */
379
 
380
/*
381 90 lampret
 * Bit definitions for Tick Timer Control Register
382
 *
383
 */
384
#define SPR_TTCR_PERIOD 0x0fffffff  /* Time Period */
385 133 markom
#define SPR_TTMR_PERIOD SPR_TTCR_PERIOD
386
#define SPR_TTMR_IP     0x10000000  /* Interrupt Pending */
387
#define SPR_TTMR_IE     0x20000000  /* Interrupt Enable */
388
#define SPR_TTMR_M      0xC0000000  /* Tick Timer Mode */
389 90 lampret
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.