OpenCores
URL https://opencores.org/ocsvn/an-fpga-implementation-of-low-latency-noc-based-mpsoc/an-fpga-implementation-of-low-latency-noc-based-mpsoc/trunk

Subversion Repositories an-fpga-implementation-of-low-latency-noc-based-mpsoc

[/] [an-fpga-implementation-of-low-latency-noc-based-mpsoc/] [trunk/] [mpsoc/] [src_processor/] [mor1kx-5.0/] [sw/] [mor1kx/] [include/] [spr-defs.h] - Blame information for rev 48

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 48 alirezamon
/* spr-defs.h - Special purpose registers definitions file
2
 
3
   Copyright (C) 2000 Damjan Lampret
4
   Copyright (C) 2008, 2010 Embecosm Limited
5
 
6
   Contributor Damjan Lampret <lampret@opencores.org>
7
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
8
 
9
   This program is free software; you can redistribute it and/or modify it
10
   under the terms of the GNU General Public License as published by the Free
11
   Software Foundation; either version 3 of the License, or (at your option)
12
   any later version.
13
 
14
   This program is distributed in the hope that it will be useful, but WITHOUT
15
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
17
   more details.
18
 
19
   You should have received a copy of the GNU General Public License along
20
   with this program.  If not, see <http:  www.gnu.org/licenses/>.  */
21
 
22
/* ----------------------------------------------------------------------------
23
   This code is commented throughout for use with Doxygen.
24
   --------------------------------------------------------------------------*/
25
#ifndef SPR_DEFS__H
26
#define SPR_DEFS__H
27
 
28
/* Definition of special-purpose registers (SPRs). */
29
 
30
#define MAX_GRPS (32)
31
#define MAX_SPRS_PER_GRP_BITS (11)
32
#define MAX_SPRS_PER_GRP (1 << MAX_SPRS_PER_GRP_BITS)
33
#define MAX_SPRS (0x10000)
34
 
35
/* Base addresses for the groups */
36
#define SPRGROUP_SYS    (0<< MAX_SPRS_PER_GRP_BITS)
37
#define SPRGROUP_DMMU   (1<< MAX_SPRS_PER_GRP_BITS)
38
#define SPRGROUP_IMMU   (2<< MAX_SPRS_PER_GRP_BITS)
39
#define SPRGROUP_DC     (3<< MAX_SPRS_PER_GRP_BITS)
40
#define SPRGROUP_IC     (4<< MAX_SPRS_PER_GRP_BITS)
41
#define SPRGROUP_MAC    (5<< MAX_SPRS_PER_GRP_BITS)
42
#define SPRGROUP_D      (6<< MAX_SPRS_PER_GRP_BITS)
43
#define SPRGROUP_PC     (7<< MAX_SPRS_PER_GRP_BITS)
44
#define SPRGROUP_PM     (8<< MAX_SPRS_PER_GRP_BITS)
45
#define SPRGROUP_PIC    (9<< MAX_SPRS_PER_GRP_BITS)
46
#define SPRGROUP_TT     (10<< MAX_SPRS_PER_GRP_BITS)
47
#define SPRGROUP_FP     (11<< MAX_SPRS_PER_GRP_BITS)
48
 
49
/* System control and status group */
50
#define SPR_VR          (SPRGROUP_SYS + 0)
51
#define SPR_UPR         (SPRGROUP_SYS + 1)
52
#define SPR_CPUCFGR     (SPRGROUP_SYS + 2)
53
#define SPR_DMMUCFGR    (SPRGROUP_SYS + 3)
54
#define SPR_IMMUCFGR    (SPRGROUP_SYS + 4)
55
#define SPR_DCCFGR      (SPRGROUP_SYS + 5)
56
#define SPR_ICCFGR      (SPRGROUP_SYS + 6)
57
#define SPR_DCFGR       (SPRGROUP_SYS + 7)
58
#define SPR_PCCFGR      (SPRGROUP_SYS + 8)
59
#define SPR_VR2         (SPRGROUP_SYS + 9)
60
#define SPR_AVR         (SPRGROUP_SYS + 10)
61
#define SPR_EVBAR       (SPRGROUP_SYS + 11)
62
#define SPR_AECR        (SPRGROUP_SYS + 12)
63
#define SPR_AESR        (SPRGROUP_SYS + 13)
64
#define SPR_NPC         (SPRGROUP_SYS + 16)  /* CZ 21/06/01 */
65
#define SPR_SR          (SPRGROUP_SYS + 17)  /* CZ 21/06/01 */
66
#define SPR_PPC         (SPRGROUP_SYS + 18)  /* CZ 21/06/01 */
67
#define SPR_FPCSR       (SPRGROUP_SYS + 20)  /* CZ 21/06/01 */
68
#define SPR_ISR_BASE    (SPRGROUP_SYS + 21)
69
#define SPR_EPCR_BASE   (SPRGROUP_SYS + 32)  /* CZ 21/06/01 */
70
#define SPR_EPCR_LAST   (SPRGROUP_SYS + 47)  /* CZ 21/06/01 */
71
#define SPR_EEAR_BASE   (SPRGROUP_SYS + 48)
72
#define SPR_EEAR_LAST   (SPRGROUP_SYS + 63)
73
#define SPR_ESR_BASE    (SPRGROUP_SYS + 64)
74
#define SPR_ESR_LAST    (SPRGROUP_SYS + 79)
75
#define SPR_GPR_BASE    (SPRGROUP_SYS + 1024)
76
 
77
/* Data MMU group */
78
#define SPR_DMMUCR      (SPRGROUP_DMMU + 0)
79
#define SPR_DTLBEIR     (SPRGROUP_DMMU + 2)
80
#define SPR_DTLBMR_BASE(WAY)    (SPRGROUP_DMMU + 0x200 + (WAY) * 0x100)
81
#define SPR_DTLBMR_LAST(WAY)    (SPRGROUP_DMMU + 0x27f + (WAY) * 0x100)
82
#define SPR_DTLBTR_BASE(WAY)    (SPRGROUP_DMMU + 0x280 + (WAY) * 0x100)
83
#define SPR_DTLBTR_LAST(WAY)    (SPRGROUP_DMMU + 0x2ff + (WAY) * 0x100)
84
 
85
/* Instruction MMU group */
86
#define SPR_IMMUCR      (SPRGROUP_IMMU + 0)
87
#define SPR_ITLBEIR     (SPRGROUP_IMMU + 2)
88
#define SPR_ITLBMR_BASE(WAY)    (SPRGROUP_IMMU + 0x200 + (WAY) * 0x100)
89
#define SPR_ITLBMR_LAST(WAY)    (SPRGROUP_IMMU + 0x27f + (WAY) * 0x100)
90
#define SPR_ITLBTR_BASE(WAY)    (SPRGROUP_IMMU + 0x280 + (WAY) * 0x100)
91
#define SPR_ITLBTR_LAST(WAY)    (SPRGROUP_IMMU + 0x2ff + (WAY) * 0x100)
92
 
93
/* Data cache group */
94
#define SPR_DCCR        (SPRGROUP_DC + 0)
95
#define SPR_DCBPR       (SPRGROUP_DC + 1)
96
#define SPR_DCBFR       (SPRGROUP_DC + 2)
97
#define SPR_DCBIR       (SPRGROUP_DC + 3)
98
#define SPR_DCBWR       (SPRGROUP_DC + 4)
99
#define SPR_DCBLR       (SPRGROUP_DC + 5)
100
#define SPR_DCR_BASE(WAY)       (SPRGROUP_DC + 0x200 + (WAY) * 0x200)
101
#define SPR_DCR_LAST(WAY)       (SPRGROUP_DC + 0x3ff + (WAY) * 0x200)
102
 
103
/* Instruction cache group */
104
#define SPR_ICCR        (SPRGROUP_IC + 0)
105
#define SPR_ICBPR       (SPRGROUP_IC + 1)
106
#define SPR_ICBIR       (SPRGROUP_IC + 2)
107
#define SPR_ICBLR       (SPRGROUP_IC + 3)
108
#define SPR_ICR_BASE(WAY)       (SPRGROUP_IC + 0x200 + (WAY) * 0x200)
109
#define SPR_ICR_LAST(WAY)       (SPRGROUP_IC + 0x3ff + (WAY) * 0x200)
110
 
111
/* MAC group */
112
#define SPR_MACLO       (SPRGROUP_MAC + 1)
113
#define SPR_MACHI       (SPRGROUP_MAC + 2)
114
 
115
/* Debug group */
116
#define SPR_DVR(N)      (SPRGROUP_D + (N))
117
#define SPR_DCR(N)      (SPRGROUP_D + 8 + (N))
118
#define SPR_DMR1        (SPRGROUP_D + 16)
119
#define SPR_DMR2        (SPRGROUP_D + 17)
120
#define SPR_DWCR0       (SPRGROUP_D + 18)
121
#define SPR_DWCR1       (SPRGROUP_D + 19)
122
#define SPR_DSR         (SPRGROUP_D + 20)
123
#define SPR_DRR         (SPRGROUP_D + 21)
124
 
125
/* Performance counters group */
126
#define SPR_PCCR(N)     (SPRGROUP_PC + (N))
127
#define SPR_PCMR(N)     (SPRGROUP_PC + 8 + (N))
128
 
129
/* Power management group */
130
#define SPR_PMR (SPRGROUP_PM + 0)
131
 
132
/* PIC group */
133
#define SPR_PICMR (SPRGROUP_PIC + 0)
134
#define SPR_PICPR (SPRGROUP_PIC + 1)
135
#define SPR_PICSR (SPRGROUP_PIC + 2)
136
 
137
/* Tick Timer group */
138
#define SPR_TTMR (SPRGROUP_TT + 0)
139
#define SPR_TTCR (SPRGROUP_TT + 1)
140
 
141
/*
142
 * Bit definitions for the Version Register
143
 *
144
 */
145
#define SPR_VR_VER      0xff000000  /* Processor version */
146
#define SPR_VR_CFG      0x00ff0000  /* Processor configuration */
147
#define SPR_VR_RES      0x0000ff80  /* Reserved */
148
#define SPR_VR_UVRP     0x00000040  /* Updated version register present */
149
#define SPR_VR_REV      0x0000003f  /* Processor revision */
150
 
151
#define SPR_VR_VER_OFF  24
152
#define SPR_VR_CFG_OFF  16
153
#define SPR_VR_UVRP_OFF 6
154
#define SPR_VR_REV_OFF  0
155
 
156
/*
157
 * Bit definitions for the Unit Present Register
158
 *
159
 */
160
#define SPR_UPR_UP         0x00000001  /* UPR present */
161
#define SPR_UPR_DCP        0x00000002  /* Data cache present */
162
#define SPR_UPR_ICP        0x00000004  /* Instruction cache present */
163
#define SPR_UPR_DMP        0x00000008  /* Data MMU present */
164
#define SPR_UPR_IMP        0x00000010  /* Instruction MMU present */
165
#define SPR_UPR_MP         0x00000020  /* MAC present */
166
#define SPR_UPR_DUP        0x00000040  /* Debug unit present */
167
#define SPR_UPR_PCUP       0x00000080  /* Performance counters unit present */
168
#define SPR_UPR_PMP        0x00000100  /* Power management present */
169
#define SPR_UPR_PICP       0x00000200  /* PIC present */
170
#define SPR_UPR_TTP        0x00000400  /* Tick timer present */
171
#define SPR_UPR_RES        0x00fe0000  /* Reserved */
172
#define SPR_UPR_CUP        0xff000000  /* Context units present */
173
 
174
/*
175
 * JPB: Bit definitions for the CPU configuration register
176
 *
177
 */
178
#define SPR_CPUCFGR_NSGF   0x0000000f  /* Number of shadow GPR files */
179
#define SPR_CPUCFGR_CGF    0x00000010  /* Custom GPR file */
180
#define SPR_CPUCFGR_OB32S  0x00000020  /* ORBIS32 supported */
181
#define SPR_CPUCFGR_OB64S  0x00000040  /* ORBIS64 supported */
182
#define SPR_CPUCFGR_OF32S  0x00000080  /* ORFPX32 supported */
183
#define SPR_CPUCFGR_OF64S  0x00000100  /* ORFPX64 supported */
184
#define SPR_CPUCFGR_OV64S  0x00000200  /* ORVDX64 supported */
185
#define SPR_CPUCFGR_ND     0x00000400  /* No delay-slot */
186
#define SPR_CPUCFGR_AVRP   0x00000800  /* Architecture version register present */
187
#define SPR_CPUCFGR_EVBARP 0x00001000  /* Exception vector base address register 
188
                                          present */
189
#define SPR_CPUCFGR_ISRP   0x00002000  /* Implementation-specific registers present */
190
#define SPR_CPUCFGR_AECSRP 0x00004000  /* Arithmetic exception control/status 
191
                                          registers present */
192
#define SPR_CPUCFGR_RES    0xffff8000  /* Reserved */
193
 
194
/*
195
 * Bit definitions for the Version Register 2
196
 *
197
 */
198
#define SPR_VR2_CPUID   0xff000000  /* Unique CPU identifier */
199
#define SPR_VR2_VER     0x00ffffff  /* Version */
200
 
201
#define SPR_VR2_CPUID_OFF   24
202
#define SPR_VR2_VER_OFF     0
203
 
204
#define SPR_VR2_CPUID_OR1KSIM   0x00
205
#define SPR_VR2_CPUID_MOR1KX    0x01
206
#define SPR_VR2_CPUID_OR1200    0x12
207
#define SPR_VR2_CPUID_ALTOR32   0x32
208
#define SPR_VR2_CPUID_OR10      0x10
209
 
210
 
211
/*
212
 * Bit definitions for the Architecture Version register
213
 *
214
 */
215
#define SPR_AVR_MAJ     0xff000000  /* Major architecture version number */
216
#define SPR_AVR_MIN     0x00ff0000  /* Minor architecture version number */
217
#define SPR_AVR_REV     0x0000ff00  /* Architecture revision number */
218
#define SPR_AVR_RES     0x000000ff  /* Reserved */
219
 
220
#define SPR_AVR_MAJ_OFF 24
221
#define SPR_AVR_MIN_OFF 16
222
#define SPR_AVR_REV_OFF 8
223
 
224
/*
225
 * Bit definitions for the Exception Base Address register
226
 *
227
 */
228
#define SPR_EVBAR_EVBA  0xffffe000  /* Exception vector base address */
229
#define SPR_EVBAR_RES   0x00001fff  /* Reserved */
230
 
231
#define SPR_EVBAR_EVBA_OFF 13
232
 
233
/*
234
 * Bit definitions for the Arithmetic Exception Control register
235
 *
236
 */
237
#define SPR_AECR_CYADDE  0x00000001  /* Carry on add/subtract exception */
238
#define SPR_AECR_OVADDE  0x00000002  /* Overflow on add/subtract exception */
239
#define SPR_AECR_CYMULE  0x00000004  /* Carry on multiply exception */
240
#define SPR_AECR_OVMULE  0x00000008  /* Overflow on multiply exception */
241
#define SPR_AECR_DBZE    0x00000010  /* Divide by zero exception */
242
#define SPR_AECR_CYMACADDE  0x00000020  /* Carry on MAC add/subtract exception */
243
#define SPR_AECR_OVMACADDE  0x00000040  /* Overflow on MAC add/subtract exception */
244
 
245
#define SPR_AECR_CYADDE_OFF 0
246
#define SPR_AECR_OVADDE_OFF 1
247
#define SPR_AECR_CYMULE_OFF 2
248
#define SPR_AECR_OVMULE_OFF 3
249
#define SPR_AECR_DBZE_OFF   4
250
#define SPR_AECR_CYMACADDE_OFF 5
251
#define SPR_AECR_OVMACADDE_OFF 6
252
 
253
 
254
/*
255
 * Bit definitions for the Arithmetic Exception Status register
256
 *
257
 */
258
#define SPR_AESR_CYADDE  0x00000001  /* Carry on add/subtract exception */
259
#define SPR_AESR_OVADDE  0x00000002  /* Overflow on add/subtract exception */
260
#define SPR_AESR_CYMULE  0x00000004  /* Carry on multiply exception */
261
#define SPR_AESR_OVMULE  0x00000008  /* Overflow on multiply exception */
262
#define SPR_AESR_DBZE    0x00000010  /* Divide by zero exception */
263
#define SPR_AESR_CYMACADDE  0x00000020  /* Carry on MAC add/subtract exception */
264
#define SPR_AESR_OVMACADDE  0x00000040  /* Overflow on MAC add/subtract exception */
265
 
266
#define SPR_AESR_CYADDE_OFF 0
267
#define SPR_AESR_OVADDE_OFF 1
268
#define SPR_AESR_CYMULE_OFF 2
269
#define SPR_AESR_OVMULE_OFF 3
270
#define SPR_AESR_DBZE_OFF   4
271
#define SPR_AESR_CYMACADDE_OFF 5
272
#define SPR_AESR_OVMACADDE_OFF 6
273
 
274
/*
275
 * JPB: Bit definitions for the Debug configuration register and other
276
 * constants.
277
 *
278
 */
279
 
280
#define SPR_DCFGR_NDP      0x00000007  /* Number of matchpoints mask */
281
#define SPR_DCFGR_NDP1     0x00000000  /* One matchpoint supported */
282
#define SPR_DCFGR_NDP2     0x00000001  /* Two matchpoints supported */
283
#define SPR_DCFGR_NDP3     0x00000002  /* Three matchpoints supported */
284
#define SPR_DCFGR_NDP4     0x00000003  /* Four matchpoints supported */
285
#define SPR_DCFGR_NDP5     0x00000004  /* Five matchpoints supported */
286
#define SPR_DCFGR_NDP6     0x00000005  /* Six matchpoints supported */
287
#define SPR_DCFGR_NDP7     0x00000006  /* Seven matchpoints supported */
288
#define SPR_DCFGR_NDP8     0x00000007  /* Eight matchpoints supported */
289
#define SPR_DCFGR_WPCI     0x00000008  /* Watchpoint counters implemented */
290
 
291
#define MATCHPOINTS_TO_NDP(n) (1 == n ? SPR_DCFGR_NDP1 : \
292
                               2 == n ? SPR_DCFGR_NDP2 : \
293
                               3 == n ? SPR_DCFGR_NDP3 : \
294
                               4 == n ? SPR_DCFGR_NDP4 : \
295
                               5 == n ? SPR_DCFGR_NDP5 : \
296
                               6 == n ? SPR_DCFGR_NDP6 : \
297
                               7 == n ? SPR_DCFGR_NDP7 : SPR_DCFGR_NDP8)
298
#define MAX_MATCHPOINTS  8
299
#define MAX_WATCHPOINTS  (MAX_MATCHPOINTS + 2)
300
 
301
/*
302
 * Bit definitions for the Supervision Register
303
 *
304
 */
305
#define SPR_SR_SM          0x00000001  /* Supervisor Mode */
306
#define SPR_SR_TEE         0x00000002  /* Tick timer Exception Enable */
307
#define SPR_SR_IEE         0x00000004  /* Interrupt Exception Enable */
308
#define SPR_SR_DCE         0x00000008  /* Data Cache Enable */
309
#define SPR_SR_ICE         0x00000010  /* Instruction Cache Enable */
310
#define SPR_SR_DME         0x00000020  /* Data MMU Enable */
311
#define SPR_SR_IME         0x00000040  /* Instruction MMU Enable */
312
#define SPR_SR_LEE         0x00000080  /* Little Endian Enable */
313
#define SPR_SR_CE          0x00000100  /* CID Enable */
314
#define SPR_SR_F           0x00000200  /* Condition Flag */
315
#define SPR_SR_CY          0x00000400  /* Carry flag */
316
#define SPR_SR_OV          0x00000800  /* Overflow flag */
317
#define SPR_SR_OVE         0x00001000  /* Overflow flag Exception */
318
#define SPR_SR_DSX         0x00002000  /* Delay Slot Exception */
319
#define SPR_SR_EPH         0x00004000  /* Exception Prefix High */
320
#define SPR_SR_FO          0x00008000  /* Fixed one */
321
#define SPR_SR_SUMRA       0x00010000  /* Supervisor SPR read access */
322
#define SPR_SR_RES         0x0ffe0000  /* Reserved */
323
#define SPR_SR_CID         0xf0000000  /* Context ID */
324
 
325
/*
326
 * Bit definitions for the Data MMU Control Register
327
 *
328
 */
329
#define SPR_DMMUCR_P2S     0x0000003e  /* Level 2 Page Size */
330
#define SPR_DMMUCR_P1S     0x000007c0  /* Level 1 Page Size */
331
#define SPR_DMMUCR_VADDR_WIDTH  0x0000f800  /* Virtual ADDR Width */
332
#define SPR_DMMUCR_PADDR_WIDTH  0x000f0000  /* Physical ADDR Width */
333
 
334
/*
335
 * Bit definitions for the Instruction MMU Control Register
336
 *
337
 */
338
#define SPR_IMMUCR_P2S     0x0000003e  /* Level 2 Page Size */
339
#define SPR_IMMUCR_P1S     0x000007c0  /* Level 1 Page Size */
340
#define SPR_IMMUCR_VADDR_WIDTH  0x0000f800  /* Virtual ADDR Width */
341
#define SPR_IMMUCR_PADDR_WIDTH  0x000f0000  /* Physical ADDR Width */
342
 
343
/*
344
 * Bit definitions for the Data TLB Match Register
345
 *
346
 */
347
#define SPR_DTLBMR_V       0x00000001  /* Valid */
348
#define SPR_DTLBMR_PL1     0x00000002  /* Page Level 1 (if 0 then PL2) */
349
#define SPR_DTLBMR_CID     0x0000003c  /* Context ID */
350
#define SPR_DTLBMR_LRU     0x000000c0  /* Least Recently Used */
351
#define SPR_DTLBMR_VPN     0xffffe000  /* Virtual Page Number */
352
 
353
/*
354
 * Bit definitions for the Data TLB Translate Register
355
 *
356
 */
357
#define SPR_DTLBTR_CC      0x00000001  /* Cache Coherency */
358
#define SPR_DTLBTR_CI      0x00000002  /* Cache Inhibit */
359
#define SPR_DTLBTR_WBC     0x00000004  /* Write-Back Cache */
360
#define SPR_DTLBTR_WOM     0x00000008  /* Weakly-Ordered Memory */
361
#define SPR_DTLBTR_A       0x00000010  /* Accessed */
362
#define SPR_DTLBTR_D       0x00000020  /* Dirty */
363
#define SPR_DTLBTR_URE     0x00000040  /* User Read Enable */
364
#define SPR_DTLBTR_UWE     0x00000080  /* User Write Enable */
365
#define SPR_DTLBTR_SRE     0x00000100  /* Supervisor Read Enable */
366
#define SPR_DTLBTR_SWE     0x00000200  /* Supervisor Write Enable */
367
#define SPR_DTLBTR_PPN     0xffffe000  /* Physical Page Number */
368
 
369
#define DTLB_PR_NOLIMIT  ( SPR_DTLBTR_URE  | \
370
                           SPR_DTLBTR_UWE  | \
371
                           SPR_DTLBTR_SRE  | \
372
                           SPR_DTLBTR_SWE  )
373
 
374
/*
375
 * Bit definitions for the Instruction TLB Match Register
376
 *
377
 */
378
#define SPR_ITLBMR_V       0x00000001  /* Valid */
379
#define SPR_ITLBMR_PL1     0x00000002  /* Page Level 1 (if 0 then PL2) */
380
#define SPR_ITLBMR_CID     0x0000003c  /* Context ID */
381
#define SPR_ITLBMR_LRU     0x000000c0  /* Least Recently Used */
382
#define SPR_ITLBMR_VPN     0xffffe000  /* Virtual Page Number */
383
 
384
/*
385
 * Bit definitions for the Instruction TLB Translate Register
386
 *
387
 */
388
#define SPR_ITLBTR_CC      0x00000001  /* Cache Coherency */
389
#define SPR_ITLBTR_CI      0x00000002  /* Cache Inhibit */
390
#define SPR_ITLBTR_WBC     0x00000004  /* Write-Back Cache */
391
#define SPR_ITLBTR_WOM     0x00000008  /* Weakly-Ordered Memory */
392
#define SPR_ITLBTR_A       0x00000010  /* Accessed */
393
#define SPR_ITLBTR_D       0x00000020  /* Dirty */
394
#define SPR_ITLBTR_SXE     0x00000040  /* User Read Enable */
395
#define SPR_ITLBTR_UXE     0x00000080  /* User Write Enable */
396
#define SPR_ITLBTR_PPN     0xffffe000  /* Physical Page Number */
397
 
398
#define ITLB_PR_NOLIMIT  ( SPR_ITLBTR_SXE  |    \
399
                           SPR_ITLBTR_UXE  )
400
 
401
 
402
/*
403
 * Bit definitions for Data Cache Control register
404
 *
405
 */
406
#define SPR_DCCR_EW        0x000000ff  /* Enable ways */
407
 
408
/*
409
 * Bit definitions for Insn Cache Control register
410
 *
411
 */
412
#define SPR_ICCR_EW        0x000000ff  /* Enable ways */
413
 
414
/*
415
 * Bit definitions for Data Cache Configuration Register
416
 *
417
 */
418
 
419
#define SPR_DCCFGR_NCW          0x00000007
420
#define SPR_DCCFGR_NCS          0x00000078
421
#define SPR_DCCFGR_CBS          0x00000080
422
#define SPR_DCCFGR_CWS          0x00000100
423
#define SPR_DCCFGR_CCRI         0x00000200
424
#define SPR_DCCFGR_CBIRI        0x00000400
425
#define SPR_DCCFGR_CBPRI        0x00000800
426
#define SPR_DCCFGR_CBLRI        0x00001000
427
#define SPR_DCCFGR_CBFRI        0x00002000
428
#define SPR_DCCFGR_CBWBRI       0x00004000
429
 
430
#define SPR_DCCFGR_NCW_OFF      0
431
#define SPR_DCCFGR_NCS_OFF      3
432
#define SPR_DCCFGR_CBS_OFF      7
433
 
434
/*
435
 * Bit definitions for Instruction Cache Configuration Register
436
 *
437
 */
438
#define SPR_ICCFGR_NCW          0x00000007
439
#define SPR_ICCFGR_NCS          0x00000078
440
#define SPR_ICCFGR_CBS          0x00000080
441
#define SPR_ICCFGR_CCRI         0x00000200
442
#define SPR_ICCFGR_CBIRI        0x00000400
443
#define SPR_ICCFGR_CBPRI        0x00000800
444
#define SPR_ICCFGR_CBLRI        0x00001000
445
 
446
#define SPR_ICCFGR_NCW_OFF      0
447
#define SPR_ICCFGR_NCS_OFF      3
448
#define SPR_ICCFGR_CBS_OFF      7
449
 
450
/*
451
 * Bit definitions for Data MMU Configuration Register
452
 *
453
 */
454
 
455
#define SPR_DMMUCFGR_NTW        0x00000003
456
#define SPR_DMMUCFGR_NTS        0x0000001C
457
#define SPR_DMMUCFGR_NAE        0x000000E0
458
#define SPR_DMMUCFGR_CRI        0x00000100
459
#define SPR_DMMUCFGR_PRI        0x00000200
460
#define SPR_DMMUCFGR_TEIRI      0x00000400
461
#define SPR_DMMUCFGR_HTR        0x00000800
462
 
463
#define SPR_DMMUCFGR_NTW_OFF    0
464
#define SPR_DMMUCFGR_NTS_OFF    2
465
 
466
/*
467
 * Bit definitions for Instruction MMU Configuration Register
468
 *
469
 */
470
 
471
#define SPR_IMMUCFGR_NTW        0x00000003
472
#define SPR_IMMUCFGR_NTS        0x0000001C
473
#define SPR_IMMUCFGR_NAE        0x000000E0
474
#define SPR_IMMUCFGR_CRI        0x00000100
475
#define SPR_IMMUCFGR_PRI        0x00000200
476
#define SPR_IMMUCFGR_TEIRI      0x00000400
477
#define SPR_IMMUCFGR_HTR        0x00000800
478
 
479
#define SPR_IMMUCFGR_NTW_OFF    0
480
#define SPR_IMMUCFGR_NTS_OFF    2
481
 
482
/*
483
 * Bit definitions for Debug Control registers
484
 *
485
 */
486
#define SPR_DCR_DP      0x00000001  /* DVR/DCR present */
487
#define SPR_DCR_CC      0x0000000e  /* Compare condition */
488
#define SPR_DCR_SC      0x00000010  /* Signed compare */
489
#define SPR_DCR_CT      0x000000e0  /* Compare to */
490
 
491
/* Bit results with SPR_DCR_CC mask */
492
#define SPR_DCR_CC_MASKED 0x00000000
493
#define SPR_DCR_CC_EQUAL  0x00000002
494
#define SPR_DCR_CC_LESS   0x00000004
495
#define SPR_DCR_CC_LESSE  0x00000006
496
#define SPR_DCR_CC_GREAT  0x00000008
497
#define SPR_DCR_CC_GREATE 0x0000000a
498
#define SPR_DCR_CC_NEQUAL 0x0000000c
499
 
500
/* Bit results with SPR_DCR_CT mask */
501
#define SPR_DCR_CT_DISABLED 0x00000000
502
#define SPR_DCR_CT_IFEA     0x00000020
503
#define SPR_DCR_CT_LEA      0x00000040
504
#define SPR_DCR_CT_SEA      0x00000060
505
#define SPR_DCR_CT_LD       0x00000080
506
#define SPR_DCR_CT_SD       0x000000a0
507
#define SPR_DCR_CT_LSEA     0x000000c0
508
#define SPR_DCR_CT_LSD      0x000000e0
509
/* SPR_DCR_CT_LSD doesn't seem to be implemented anywhere in or1ksim. 2004-1-30 HP */
510
 
511
/*
512
 * Bit definitions for Debug Mode 1 register
513
 *
514
 */
515
#define SPR_DMR1_CW       0x000fffff  /* Chain register pair data */
516
#define SPR_DMR1_CW0_AND  0x00000001
517
#define SPR_DMR1_CW0_OR   0x00000002
518
#define SPR_DMR1_CW0      (SPR_DMR1_CW0_AND | SPR_DMR1_CW0_OR)
519
#define SPR_DMR1_CW1_AND  0x00000004
520
#define SPR_DMR1_CW1_OR   0x00000008
521
#define SPR_DMR1_CW1      (SPR_DMR1_CW1_AND | SPR_DMR1_CW1_OR)
522
#define SPR_DMR1_CW2_AND  0x00000010
523
#define SPR_DMR1_CW2_OR   0x00000020
524
#define SPR_DMR1_CW2      (SPR_DMR1_CW2_AND | SPR_DMR1_CW2_OR)
525
#define SPR_DMR1_CW3_AND  0x00000040
526
#define SPR_DMR1_CW3_OR   0x00000080
527
#define SPR_DMR1_CW3      (SPR_DMR1_CW3_AND | SPR_DMR1_CW3_OR)
528
#define SPR_DMR1_CW4_AND  0x00000100
529
#define SPR_DMR1_CW4_OR   0x00000200
530
#define SPR_DMR1_CW4      (SPR_DMR1_CW4_AND | SPR_DMR1_CW4_OR)
531
#define SPR_DMR1_CW5_AND  0x00000400
532
#define SPR_DMR1_CW5_OR   0x00000800
533
#define SPR_DMR1_CW5      (SPR_DMR1_CW5_AND | SPR_DMR1_CW5_OR)
534
#define SPR_DMR1_CW6_AND  0x00001000
535
#define SPR_DMR1_CW6_OR   0x00002000
536
#define SPR_DMR1_CW6      (SPR_DMR1_CW6_AND | SPR_DMR1_CW6_OR)
537
#define SPR_DMR1_CW7_AND  0x00004000
538
#define SPR_DMR1_CW7_OR   0x00008000
539
#define SPR_DMR1_CW7      (SPR_DMR1_CW7_AND | SPR_DMR1_CW7_OR)
540
#define SPR_DMR1_CW8_AND  0x00010000
541
#define SPR_DMR1_CW8_OR   0x00020000
542
#define SPR_DMR1_CW8      (SPR_DMR1_CW8_AND | SPR_DMR1_CW8_OR)
543
#define SPR_DMR1_CW9_AND  0x00040000
544
#define SPR_DMR1_CW9_OR   0x00080000
545
#define SPR_DMR1_CW9      (SPR_DMR1_CW9_AND | SPR_DMR1_CW9_OR)
546
#define SPR_DMR1_RES1      0x00300000  /* Reserved */
547
#define SPR_DMR1_ST       0x00400000  /* Single-step trace*/
548
#define SPR_DMR1_BT       0x00800000  /* Branch trace */
549
#define SPR_DMR1_RES2     0xff000000  /* Reserved */
550
 
551
/*
552
 * Bit definitions for Debug Mode 2 register. AWTC and WGB corrected by JPB
553
 *
554
 */
555
#define SPR_DMR2_WCE0      0x00000001  /* Watchpoint counter 0 enable */
556
#define SPR_DMR2_WCE1      0x00000002  /* Watchpoint counter 0 enable */
557
#define SPR_DMR2_AWTC      0x00000ffc  /* Assign watchpoints to counters */
558
#define SPR_DMR2_AWTC_OFF           2  /* Bit offset to AWTC field */
559
#define SPR_DMR2_WGB       0x003ff000  /* Watchpoints generating breakpoint */
560
#define SPR_DMR2_WGB_OFF           12  /* Bit offset to WGB field */
561
#define SPR_DMR2_WBS       0xffc00000  /* JPB: Watchpoint status */
562
#define SPR_DMR2_WBS_OFF           22  /* Bit offset to WBS field */
563
 
564
/*
565
 * Bit definitions for Debug watchpoint counter registers
566
 *
567
 */
568
#define SPR_DWCR_COUNT      0x0000ffff  /* Count */
569
#define SPR_DWCR_MATCH      0xffff0000  /* Match */
570
#define SPR_DWCR_MATCH_OFF          16  /* Match bit offset */
571
 
572
/*
573
 * Bit definitions for Debug stop register
574
 *
575
 */
576
#define SPR_DSR_RSTE    0x00000001  /* Reset exception */
577
#define SPR_DSR_BUSEE   0x00000002  /* Bus error exception */
578
#define SPR_DSR_DPFE    0x00000004  /* Data Page Fault exception */
579
#define SPR_DSR_IPFE    0x00000008  /* Insn Page Fault exception */
580
#define SPR_DSR_TTE     0x00000010  /* Tick Timer exception */
581
#define SPR_DSR_AE      0x00000020  /* Alignment exception */
582
#define SPR_DSR_IIE     0x00000040  /* Illegal Instruction exception */
583
#define SPR_DSR_IE      0x00000080  /* Interrupt exception */
584
#define SPR_DSR_DME     0x00000100  /* DTLB miss exception */
585
#define SPR_DSR_IME     0x00000200  /* ITLB miss exception */
586
#define SPR_DSR_RE      0x00000400  /* Range exception */
587
#define SPR_DSR_SCE     0x00000800  /* System call exception */
588
#define SPR_DSR_FPE     0x00001000  /* Floating Point Exception */
589
#define SPR_DSR_TE      0x00002000  /* Trap exception */
590
 
591
/*
592
 * Bit definitions for Debug reason register
593
 *
594
 */
595
#define SPR_DRR_RSTE    0x00000001  /* Reset exception */
596
#define SPR_DRR_BUSEE   0x00000002  /* Bus error exception */
597
#define SPR_DRR_DPFE    0x00000004  /* Data Page Fault exception */
598
#define SPR_DRR_IPFE    0x00000008  /* Insn Page Fault exception */
599
#define SPR_DRR_TTE     0x00000010  /* Tick Timer exception */
600
#define SPR_DRR_AE      0x00000020  /* Alignment exception */
601
#define SPR_DRR_IIE     0x00000040  /* Illegal Instruction exception */
602
#define SPR_DRR_IE      0x00000080  /* Interrupt exception */
603
#define SPR_DRR_DME     0x00000100  /* DTLB miss exception */
604
#define SPR_DRR_IME     0x00000200  /* ITLB miss exception */
605
#define SPR_DRR_RE      0x00000400  /* Range exception */
606
#define SPR_DRR_SCE     0x00000800  /* System call exception */
607
#define SPR_DRR_FPE     0x00001000  /* Floating Point Exception */
608
#define SPR_DRR_TE      0x00002000  /* Trap exception */
609
 
610
/*
611
 * Bit definitions for Performance counters mode registers
612
 *
613
 */
614
#define SPR_PCMR_CP     0x00000001  /* Counter present */
615
#define SPR_PCMR_UMRA   0x00000002  /* User mode read access */
616
#define SPR_PCMR_CISM   0x00000004  /* Count in supervisor mode */
617
#define SPR_PCMR_CIUM   0x00000008  /* Count in user mode */
618
#define SPR_PCMR_LA     0x00000010  /* Load access event */
619
#define SPR_PCMR_SA     0x00000020  /* Store access event */
620
#define SPR_PCMR_IF     0x00000040  /* Instruction fetch event*/
621
#define SPR_PCMR_DCM    0x00000080  /* Data cache miss event */
622
#define SPR_PCMR_ICM    0x00000100  /* Insn cache miss event */
623
#define SPR_PCMR_IFS    0x00000200  /* Insn fetch stall event */
624
#define SPR_PCMR_LSUS   0x00000400  /* LSU stall event */
625
#define SPR_PCMR_BS     0x00000800  /* Branch stall event */
626
#define SPR_PCMR_DTLBM  0x00001000  /* DTLB miss event */
627
#define SPR_PCMR_ITLBM  0x00002000  /* ITLB miss event */
628
#define SPR_PCMR_DDS    0x00004000  /* Data dependency stall event */
629
#define SPR_PCMR_WPE    0x03ff8000  /* Watchpoint events */
630
 
631
/*
632
 * Bit definitions for the Power management register
633
 *
634
 */
635
#define SPR_PMR_SDF     0x0000000f  /* Slow down factor */
636
#define SPR_PMR_DME     0x00000010  /* Doze mode enable */
637
#define SPR_PMR_SME     0x00000020  /* Sleep mode enable */
638
#define SPR_PMR_DCGE    0x00000040  /* Dynamic clock gating enable */
639
#define SPR_PMR_SUME    0x00000080  /* Suspend mode enable */
640
 
641
/*
642
 * Bit definitions for PICMR
643
 *
644
 */
645
#define SPR_PICMR_IUM   0xfffffffc  /* Interrupt unmask */
646
 
647
/*
648
 * Bit definitions for PICPR
649
 *
650
 */
651
#define SPR_PICPR_IPRIO 0xfffffffc  /* Interrupt priority */
652
 
653
/*
654
 * Bit definitions for PICSR
655
 *
656
 */
657
#define SPR_PICSR_IS    0xffffffff  /* Interrupt status */
658
 
659
/*
660
 * Bit definitions for Tick Timer Control Register
661
 *
662
 */
663
#define SPR_TTCR_PERIOD 0x0fffffff  /* Time Period */
664
#define SPR_TTMR_PERIOD SPR_TTCR_PERIOD
665
#define SPR_TTMR_IP     0x10000000  /* Interrupt Pending */
666
#define SPR_TTMR_IE     0x20000000  /* Interrupt Enable */
667
#define SPR_TTMR_RT     0x40000000  /* Restart tick */
668
#define SPR_TTMR_SR     0x80000000  /* Single run */
669
#define SPR_TTMR_CR     0xc0000000  /* Continuous run */
670
#define SPR_TTMR_M      0xc0000000  /* Tick mode */
671
 
672
/*
673
 * Bit definitions for the FP Control Status Register
674
 *
675
 */
676
#define SPR_FPCSR_FPEE  0x00000001  /* Floating Point Exception Enable */
677
#define SPR_FPCSR_RM    0x00000006  /* Rounding Mode */
678
#define SPR_FPCSR_OVF   0x00000008  /* Overflow Flag */
679
#define SPR_FPCSR_UNF   0x00000010  /* Underflow Flag */
680
#define SPR_FPCSR_SNF   0x00000020  /* SNAN Flag */
681
#define SPR_FPCSR_QNF   0x00000040  /* QNAN Flag */
682
#define SPR_FPCSR_ZF    0x00000080  /* Zero Flag */
683
#define SPR_FPCSR_IXF   0x00000100  /* Inexact Flag */
684
#define SPR_FPCSR_IVF   0x00000200  /* Invalid Flag */
685
#define SPR_FPCSR_INF   0x00000400  /* Infinity Flag */
686
#define SPR_FPCSR_DZF   0x00000800  /* Divide By Zero Flag */
687
#define SPR_FPCSR_ALLF (SPR_FPCSR_OVF | SPR_FPCSR_UNF | SPR_FPCSR_SNF | \
688
                        SPR_FPCSR_QNF | SPR_FPCSR_ZF | SPR_FPCSR_IXF |  \
689
                        SPR_FPCSR_IVF | SPR_FPCSR_INF | SPR_FPCSR_DZF)
690
 
691
#define FPCSR_RM_RN (0<<1)
692
#define FPCSR_RM_RZ (1<<1)
693
#define FPCSR_RM_RIP (2<<1)
694
#define FPCSR_RM_RIN (3<<1)
695
 
696
#endif  /* SPR_DEFS__H */

powered by: WebSVN 2.1.0

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