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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Source/] [portable/] [GCC/] [OpenRISC/] [port_spr_defs.h] - Blame information for rev 572

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

Line No. Rev Author Line
1 572 jeremybenn
/* 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
#ifndef __PORT_SPR_DEFS_H__
26
#define __PORT_SPR_DEFS_H__
27
 
28
#define MAX_GRPS (32)
29
#define MAX_SPRS_PER_GRP_BITS (11)
30
#define MAX_SPRS_PER_GRP (1 << MAX_SPRS_PER_GRP_BITS)
31
#define MAX_SPRS (0x10000)
32
 
33
/* Base addresses for the groups */
34
#define SPRGROUP_SYS    (0<< MAX_SPRS_PER_GRP_BITS)
35
#define SPRGROUP_DMMU   (1<< MAX_SPRS_PER_GRP_BITS)
36
#define SPRGROUP_IMMU   (2<< MAX_SPRS_PER_GRP_BITS)
37
#define SPRGROUP_DC             (3<< MAX_SPRS_PER_GRP_BITS)
38
#define SPRGROUP_IC             (4<< MAX_SPRS_PER_GRP_BITS)
39
#define SPRGROUP_MAC    (5<< MAX_SPRS_PER_GRP_BITS)
40
#define SPRGROUP_D              (6<< MAX_SPRS_PER_GRP_BITS)
41
#define SPRGROUP_PC             (7<< MAX_SPRS_PER_GRP_BITS)
42
#define SPRGROUP_PM             (8<< MAX_SPRS_PER_GRP_BITS)
43
#define SPRGROUP_PIC    (9<< MAX_SPRS_PER_GRP_BITS)
44
#define SPRGROUP_TT             (10<< MAX_SPRS_PER_GRP_BITS)
45
 
46
/* System control and status group */
47
#define SPR_VR                  (SPRGROUP_SYS + 0)
48
#define SPR_UPR                 (SPRGROUP_SYS + 1)
49
#define SPR_CPUCFGR             (SPRGROUP_SYS + 2)
50
#define SPR_DMMUCFGR    (SPRGROUP_SYS + 3)
51
#define SPR_IMMUCFGR    (SPRGROUP_SYS + 4)
52
#define SPR_DCCFGR              (SPRGROUP_SYS + 5)
53
#define SPR_ICCFGR              (SPRGROUP_SYS + 6)
54
#define SPR_DCFGR               (SPRGROUP_SYS + 7)
55
#define SPR_PCCFGR              (SPRGROUP_SYS + 8)
56
#define SPR_NPC         (SPRGROUP_SYS + 16)  /* CZ 21/06/01 */
57
#define SPR_SR                  (SPRGROUP_SYS + 17)  /* CZ 21/06/01 */
58
#define SPR_PPC         (SPRGROUP_SYS + 18)  /* CZ 21/06/01 */
59
#define SPR_EPCR_BASE   (SPRGROUP_SYS + 32)  /* CZ 21/06/01 */
60
#define SPR_EPCR_LAST   (SPRGROUP_SYS + 47)  /* CZ 21/06/01 */
61
#define SPR_EEAR_BASE   (SPRGROUP_SYS + 48)
62
#define SPR_EEAR_LAST   (SPRGROUP_SYS + 63)
63
#define SPR_ESR_BASE    (SPRGROUP_SYS + 64)
64
#define SPR_ESR_LAST    (SPRGROUP_SYS + 79)
65
 
66
/* Data MMU group */
67
#define SPR_DMMUCR                      (SPRGROUP_DMMU + 0)
68
#define SPR_DTLBMR_BASE(WAY)    (SPRGROUP_DMMU + 0x200 + (WAY) * 0x100)
69
#define SPR_DTLBMR_LAST(WAY)    (SPRGROUP_DMMU + 0x27f + (WAY) * 0x100)
70
#define SPR_DTLBTR_BASE(WAY)    (SPRGROUP_DMMU + 0x280 + (WAY) * 0x100)
71
#define SPR_DTLBTR_LAST(WAY)    (SPRGROUP_DMMU + 0x2ff + (WAY) * 0x100)
72
 
73
/* Instruction MMU group */
74
#define SPR_IMMUCR                      (SPRGROUP_IMMU + 0)
75
#define SPR_ITLBMR_BASE(WAY)    (SPRGROUP_IMMU + 0x200 + (WAY) * 0x100)
76
#define SPR_ITLBMR_LAST(WAY)    (SPRGROUP_IMMU + 0x27f + (WAY) * 0x100)
77
#define SPR_ITLBTR_BASE(WAY)    (SPRGROUP_IMMU + 0x280 + (WAY) * 0x100)
78
#define SPR_ITLBTR_LAST(WAY)    (SPRGROUP_IMMU + 0x2ff + (WAY) * 0x100)
79
 
80
/* Data cache group */
81
#define SPR_DCCR                        (SPRGROUP_DC + 0)
82
#define SPR_DCBPR                       (SPRGROUP_DC + 1)
83
#define SPR_DCBFR                       (SPRGROUP_DC + 2)
84
#define SPR_DCBIR                       (SPRGROUP_DC + 3)
85
#define SPR_DCBWR                       (SPRGROUP_DC + 4)
86
#define SPR_DCBLR                       (SPRGROUP_DC + 5)
87
#define SPR_DCR_BASE(WAY)       (SPRGROUP_DC + 0x200 + (WAY) * 0x200)
88
#define SPR_DCR_LAST(WAY)       (SPRGROUP_DC + 0x3ff + (WAY) * 0x200)
89
 
90
/* Instruction cache group */
91
#define SPR_ICCR                        (SPRGROUP_IC + 0)
92
#define SPR_ICBPR                       (SPRGROUP_IC + 1)
93
#define SPR_ICBIR                       (SPRGROUP_IC + 2)
94
#define SPR_ICBLR                       (SPRGROUP_IC + 3)
95
#define SPR_ICR_BASE(WAY)       (SPRGROUP_IC + 0x200 + (WAY) * 0x200)
96
#define SPR_ICR_LAST(WAY)       (SPRGROUP_IC + 0x3ff + (WAY) * 0x200)
97
 
98
/* MAC group */
99
#define SPR_MACLO       (SPRGROUP_MAC + 1)
100
#define SPR_MACHI       (SPRGROUP_MAC + 2)
101
 
102
/* Debug group */
103
#define SPR_DVR(N)      (SPRGROUP_D + (N))
104
#define SPR_DCR(N)      (SPRGROUP_D + 8 + (N))
105
#define SPR_DMR1        (SPRGROUP_D + 16)
106
#define SPR_DMR2        (SPRGROUP_D + 17)
107
#define SPR_DWCR0       (SPRGROUP_D + 18)
108
#define SPR_DWCR1       (SPRGROUP_D + 19)
109
#define SPR_DSR         (SPRGROUP_D + 20)
110
#define SPR_DRR         (SPRGROUP_D + 21)
111
 
112
/* Performance counters group */
113
#define SPR_PCCR(N)     (SPRGROUP_PC + (N))
114
#define SPR_PCMR(N)     (SPRGROUP_PC + 8 + (N))
115
 
116
/* Power management group */
117
#define SPR_PMR (SPRGROUP_PM + 0)
118
 
119
/* PIC group */
120
#define SPR_PICMR (SPRGROUP_PIC + 0)
121
#define SPR_PICPR (SPRGROUP_PIC + 1)
122
#define SPR_PICSR (SPRGROUP_PIC + 2)
123
 
124
/* Tick Timer group */
125
#define SPR_TTMR (SPRGROUP_TT + 0)
126
#define SPR_TTCR (SPRGROUP_TT + 1)
127
 
128
/*
129
 * Bit definitions for the Version Register
130
 *
131
 */
132
#define SPR_VR_VER      0xffff0000  /* Processor version */
133
#define SPR_VR_REV      0x0000003f  /* Processor revision */
134
 
135
/*
136
 * Bit definitions for the Unit Present Register
137
 *
138
 */
139
#define SPR_UPR_UP              0x00000001  /* UPR present */
140
#define SPR_UPR_DCP             0x00000002  /* Data cache present */
141
#define SPR_UPR_ICP             0x00000004  /* Instruction cache present */
142
#define SPR_UPR_DMP             0x00000008  /* Data MMU present */
143
#define SPR_UPR_IMP             0x00000010  /* Instruction MMU present */
144
#define SPR_UPR_OB32P   0x00000020  /* ORBIS32 present */
145
#define SPR_UPR_OB64P   0x00000040  /* ORBIS64 present */
146
#define SPR_UPR_OF32P   0x00000080  /* ORFPX32 present */
147
#define SPR_UPR_OF64P   0x00000100  /* ORFPX64 present */
148
#define SPR_UPR_OV32P   0x00000200  /* ORVDX32 present */
149
#define SPR_UPR_OV64P   0x00000400  /* ORVDX64 present */
150
#define SPR_UPR_DUP             0x00000800  /* Debug unit present */
151
#define SPR_UPR_PCUP    0x00001000  /* Performance counters unit present */
152
#define SPR_UPR_PMP             0x00002000  /* Power management present */
153
#define SPR_UPR_PICP    0x00004000  /* PIC present */
154
#define SPR_UPR_TTP             0x00008000  /* Tick timer present */
155
#define SPR_UPR_SRP             0x00010000  /* Shadow registers present */
156
#define SPR_UPR_RES             0x00fe0000  /* ORVDX32 present */
157
#define SPR_UPR_CUST    0xff000000  /* Custom units */
158
 
159
/*
160
 * Bit definitions for the Supervision Register
161
 *
162
 */
163
#define SPR_SR_CID      0xf0000000  /* Context ID */
164
#define SPR_SR_FO       0x00008000  /* Fixed one */
165
#define SPR_SR_EPH      0x00004000  /* Exception Prefixi High */
166
#define SPR_SR_DSX      0x00002000  /* Delay Slot Exception */
167
#define SPR_SR_OVE      0x00001000  /* Overflow flag Exception */
168
#define SPR_SR_OV       0x00000800  /* Overflow flag */
169
#define SPR_SR_CY       0x00000400  /* Carry flag */
170
#define SPR_SR_F        0x00000200  /* Condition Flag */
171
#define SPR_SR_CE       0x00000100  /* CID Enable */
172
#define SPR_SR_LEE      0x00000080  /* Little Endian Enable */
173
#define SPR_SR_IME      0x00000040  /* Instruction MMU Enable */
174
#define SPR_SR_DME      0x00000020  /* Data MMU Enable */
175
#define SPR_SR_ICE      0x00000010  /* Instruction Cache Enable */
176
#define SPR_SR_DCE      0x00000008  /* Data Cache Enable */
177
#define SPR_SR_IEE      0x00000004  /* Interrupt Exception Enable */
178
#define SPR_SR_TEE      0x00000002  /* Tick timer Exception Enable */
179
#define SPR_SR_SM       0x00000001  /* Supervisor Mode */
180
 
181
/*
182
 * Bit definitions for the Data MMU Control Register
183
 *
184
 */
185
#define SPR_DMMUCR_P2S                  0x0000003e  /* Level 2 Page Size */
186
#define SPR_DMMUCR_P1S                  0x000007c0  /* Level 1 Page Size */
187
#define SPR_DMMUCR_VADDR_WIDTH  0x0000f800  /* Virtual ADDR Width */
188
#define SPR_DMMUCR_PADDR_WIDTH  0x000f0000  /* Physical ADDR Width */
189
 
190
/*
191
 * Bit definitions for the Instruction MMU Control Register
192
 *
193
 */
194
#define SPR_IMMUCR_P2S                  0x0000003e  /* Level 2 Page Size */
195
#define SPR_IMMUCR_P1S                  0x000007c0  /* Level 1 Page Size */
196
#define SPR_IMMUCR_VADDR_WIDTH  0x0000f800  /* Virtual ADDR Width */
197
#define SPR_IMMUCR_PADDR_WIDTH  0x000f0000  /* Physical ADDR Width */
198
 
199
/*
200
 * Bit definitions for the Data TLB Match Register
201
 *
202
 */
203
#define SPR_DTLBMR_V    0x00000001  /* Valid */
204
#define SPR_DTLBMR_PL1  0x00000002  /* Page Level 1 (if 0 then PL2) */
205
#define SPR_DTLBMR_CID  0x0000003c  /* Context ID */
206
#define SPR_DTLBMR_LRU  0x000000c0  /* Least Recently Used */
207
#define SPR_DTLBMR_VPN  0xfffff000  /* Virtual Page Number */
208
 
209
/*
210
 * Bit definitions for the Data TLB Translate Register
211
 *
212
 */
213
#define SPR_DTLBTR_CC   0x00000001  /* Cache Coherency */
214
#define SPR_DTLBTR_CI   0x00000002  /* Cache Inhibit */
215
#define SPR_DTLBTR_WBC  0x00000004  /* Write-Back Cache */
216
#define SPR_DTLBTR_WOM  0x00000008  /* Weakly-Ordered Memory */
217
#define SPR_DTLBTR_A    0x00000010  /* Accessed */
218
#define SPR_DTLBTR_D    0x00000020  /* Dirty */
219
#define SPR_DTLBTR_URE  0x00000040  /* User Read Enable */
220
#define SPR_DTLBTR_UWE  0x00000080  /* User Write Enable */
221
#define SPR_DTLBTR_SRE  0x00000100  /* Supervisor Read Enable */
222
#define SPR_DTLBTR_SWE  0x00000200  /* Supervisor Write Enable */
223
#define SPR_DTLBTR_PPN  0xfffff000  /* Physical Page Number */
224
#define DTLB_PR_NOLIMIT  (SPR_DTLBTR_URE  | \
225
                          SPR_DTLBTR_UWE  | \
226
                          SPR_DTLBTR_SRE  | \
227
                          SPR_DTLBTR_SWE  )
228
/*
229
 * Bit definitions for the Instruction TLB Match Register
230
 *
231
 */
232
#define SPR_ITLBMR_V    0x00000001  /* Valid */
233
#define SPR_ITLBMR_PL1  0x00000002  /* Page Level 1 (if 0 then PL2) */
234
#define SPR_ITLBMR_CID  0x0000003c  /* Context ID */
235
#define SPR_ITLBMR_LRU  0x000000c0  /* Least Recently Used */
236
#define SPR_ITLBMR_VPN  0xfffff000  /* Virtual Page Number */
237
 
238
/*
239
 * Bit definitions for the Instruction TLB Translate Register
240
 *
241
 */
242
#define SPR_ITLBTR_CC   0x00000001  /* Cache Coherency */
243
#define SPR_ITLBTR_CI   0x00000002  /* Cache Inhibit */
244
#define SPR_ITLBTR_WBC  0x00000004  /* Write-Back Cache */
245
#define SPR_ITLBTR_WOM  0x00000008  /* Weakly-Ordered Memory */
246
#define SPR_ITLBTR_A    0x00000010  /* Accessed */
247
#define SPR_ITLBTR_D    0x00000020  /* Dirty */
248
#define SPR_ITLBTR_SXE  0x00000040  /* User Read Enable */
249
#define SPR_ITLBTR_UXE  0x00000080  /* User Write Enable */
250
#define SPR_ITLBTR_PPN  0xfffff000  /* Physical Page Number */
251
#define ITLB_PR_NOLIMIT  (SPR_ITLBTR_SXE  | \
252
                          SPR_ITLBTR_UXE  )
253
 
254
 
255
/*
256
 * Bit definitions for Data Cache Control register
257
 *
258
 */
259
#define SPR_DCCR_EW     0x000000ff  /* Enable ways */
260
 
261
/*
262
 * Bit definitions for Insn Cache Control register
263
 *
264
 */
265
#define SPR_ICCR_EW     0x000000ff  /* Enable ways */
266
 
267
/*
268
 * Bit definitions for Debug Control registers
269
 *
270
 */
271
#define SPR_DCR_DP      0x00000001  /* DVR/DCR present */
272
#define SPR_DCR_CC      0x0000000e  /* Compare condition */
273
#define SPR_DCR_SC      0x00000010  /* Signed compare */
274
#define SPR_DCR_CT      0x000000e0  /* Compare to */
275
 
276
/* Bit results with SPR_DCR_CC mask */
277
#define SPR_DCR_CC_MASKED 0x00000000
278
#define SPR_DCR_CC_EQUAL  0x00000001
279
#define SPR_DCR_CC_LESS   0x00000002
280
#define SPR_DCR_CC_LESSE  0x00000003
281
#define SPR_DCR_CC_GREAT  0x00000004
282
#define SPR_DCR_CC_GREATE 0x00000005
283
#define SPR_DCR_CC_NEQUAL 0x00000006
284
 
285
/* Bit results with SPR_DCR_CT mask */
286
#define SPR_DCR_CT_DISABLED 0x00000000
287
#define SPR_DCR_CT_IFEA     0x00000020
288
#define SPR_DCR_CT_LEA      0x00000040
289
#define SPR_DCR_CT_SEA      0x00000060
290
#define SPR_DCR_CT_LD       0x00000080
291
#define SPR_DCR_CT_SD       0x000000a0
292
#define SPR_DCR_CT_LSEA     0x000000c0
293
 
294
/*
295
 * Bit definitions for Debug Mode 1 register
296
 *
297
 */
298
#define SPR_DMR1_CW0    0x00000003  /* Chain watchpoint 0 */
299
#define SPR_DMR1_CW1    0x0000000c  /* Chain watchpoint 1 */
300
#define SPR_DMR1_CW2    0x00000030  /* Chain watchpoint 2 */
301
#define SPR_DMR1_CW3    0x000000c0  /* Chain watchpoint 3 */
302
#define SPR_DMR1_CW4    0x00000300  /* Chain watchpoint 4 */
303
#define SPR_DMR1_CW5    0x00000c00  /* Chain watchpoint 5 */
304
#define SPR_DMR1_CW6    0x00003000  /* Chain watchpoint 6 */
305
#define SPR_DMR1_CW7    0x0000c000  /* Chain watchpoint 7 */
306
#define SPR_DMR1_CW8    0x00030000  /* Chain watchpoint 8 */
307
#define SPR_DMR1_CW9    0x000c0000  /* Chain watchpoint 9 */
308
#define SPR_DMR1_CW10   0x00300000  /* Chain watchpoint 10 */
309
#define SPR_DMR1_ST             0x00400000  /* Single-step trace*/
310
#define SPR_DMR1_BT             0x00800000  /* Branch trace */
311
#define SPR_DMR1_DXFW   0x01000000  /* Disable external force watchpoint */
312
 
313
/*
314
 * Bit definitions for Debug Mode 2 register
315
 *
316
 */
317
#define SPR_DMR2_WCE0   0x00000001  /* Watchpoint counter 0 enable */
318
#define SPR_DMR2_WCE1   0x00000002  /* Watchpoint counter 0 enable */
319
#define SPR_DMR2_AWTC   0x00001ffc  /* Assign watchpoints to counters */
320
#define SPR_DMR2_WGB    0x00ffe000  /* Watchpoints generating breakpoint */
321
 
322
/*
323
 * Bit definitions for Debug watchpoint counter registers
324
 *
325
 */
326
#define SPR_DWCR_COUNT  0x0000ffff  /* Count */
327
#define SPR_DWCR_MATCH  0xffff0000  /* Match */
328
 
329
/*
330
 * Bit definitions for Debug stop register
331
 *
332
 */
333
#define SPR_DSR_RSTE    0x00000001  /* Reset exception */
334
#define SPR_DSR_BUSEE   0x00000002  /* Bus error exception */
335
#define SPR_DSR_DPFE    0x00000004  /* Data Page Fault exception */
336
#define SPR_DSR_IPFE    0x00000008  /* Insn Page Fault exception */
337
#define SPR_DSR_TTE             0x00000010  /* Tick Timer exception */
338
#define SPR_DSR_AE              0x00000020  /* Alignment exception */
339
#define SPR_DSR_IIE             0x00000040  /* Illegal Instruction exception */
340
#define SPR_DSR_IE              0x00000080  /* Interrupt exception */
341
#define SPR_DSR_DME             0x00000100  /* DTLB miss exception */
342
#define SPR_DSR_IME             0x00000200  /* ITLB miss exception */
343
#define SPR_DSR_RE              0x00000400  /* Range exception */
344
#define SPR_DSR_SCE             0x00000800  /* System call exception */
345
#define SPR_DSR_SSE     0x00001000  /* Single Step Exception */
346
#define SPR_DSR_TE              0x00002000  /* Trap exception */
347
 
348
/*
349
 * Bit definitions for Debug reason register
350
 *
351
 */
352
#define SPR_DRR_RSTE    0x00000001  /* Reset exception */
353
#define SPR_DRR_BUSEE   0x00000002  /* Bus error exception */
354
#define SPR_DRR_DPFE    0x00000004  /* Data Page Fault exception */
355
#define SPR_DRR_IPFE    0x00000008  /* Insn Page Fault exception */
356
#define SPR_DRR_TTE             0x00000010  /* Tick Timer exception */
357
#define SPR_DRR_AE              0x00000020  /* Alignment exception */
358
#define SPR_DRR_IIE             0x00000040  /* Illegal Instruction exception */
359
#define SPR_DRR_IE              0x00000080  /* Interrupt exception */
360
#define SPR_DRR_DME             0x00000100  /* DTLB miss exception */
361
#define SPR_DRR_IME             0x00000200  /* ITLB miss exception */
362
#define SPR_DRR_RE              0x00000400  /* Range exception */
363
#define SPR_DRR_SCE             0x00000800  /* System call exception */
364
#define SPR_DRR_TE              0x00001000  /* Trap exception */
365
 
366
/*
367
 * Bit definitions for Performance counters mode registers
368
 *
369
 */
370
#define SPR_PCMR_CP             0x00000001  /* Counter present */
371
#define SPR_PCMR_UMRA   0x00000002  /* User mode read access */
372
#define SPR_PCMR_CISM   0x00000004  /* Count in supervisor mode */
373
#define SPR_PCMR_CIUM   0x00000008  /* Count in user mode */
374
#define SPR_PCMR_LA             0x00000010  /* Load access event */
375
#define SPR_PCMR_SA             0x00000020  /* Store access event */
376
#define SPR_PCMR_IF             0x00000040  /* Instruction fetch event*/
377
#define SPR_PCMR_DCM    0x00000080  /* Data cache miss event */
378
#define SPR_PCMR_ICM    0x00000100  /* Insn cache miss event */
379
#define SPR_PCMR_IFS    0x00000200  /* Insn fetch stall event */
380
#define SPR_PCMR_LSUS   0x00000400  /* LSU stall event */
381
#define SPR_PCMR_BS             0x00000800  /* Branch stall event */
382
#define SPR_PCMR_DTLBM  0x00001000  /* DTLB miss event */
383
#define SPR_PCMR_ITLBM  0x00002000  /* ITLB miss event */
384
#define SPR_PCMR_DDS    0x00004000  /* Data dependency stall event */
385
#define SPR_PCMR_WPE    0x03ff8000  /* Watchpoint events */
386
 
387
/*
388
 * Bit definitions for the Power management register
389
 *
390
 */
391
#define SPR_PMR_SDF             0x0000000f  /* Slow down factor */
392
#define SPR_PMR_DME             0x00000010  /* Doze mode enable */
393
#define SPR_PMR_SME             0x00000020  /* Sleep mode enable */
394
#define SPR_PMR_DCGE    0x00000040  /* Dynamic clock gating enable */
395
#define SPR_PMR_SUME    0x00000080  /* Suspend mode enable */
396
 
397
/*
398
 * Bit definitions for PICMR
399
 *
400
 */
401
#define SPR_PICMR_IUM   0xfffffffc  /* Interrupt unmask */
402
 
403
/*
404
 * Bit definitions for PICPR
405
 *
406
 */
407
#define SPR_PICPR_IPRIO 0xfffffffc  /* Interrupt priority */
408
 
409
/*
410
 * Bit definitions for PICSR
411
 *
412
 */
413
#define SPR_PICSR_IS    0xffffffff  /* Interrupt status */
414
 
415
/*
416
 * Bit definitions for Tick Timer Control Register
417
 *
418
 */
419
#define SPR_TTCR_PERIOD 0x0fffffff  /* Time Period */
420
#define SPR_TTMR_PERIOD SPR_TTCR_PERIOD
421
#define SPR_TTMR_IP             0x10000000  /* Interrupt Pending */
422
#define SPR_TTMR_IE             0x20000000  /* Interrupt Enable */
423
#define SPR_TTMR_RT             0x40000000  /* Restart tick */
424
#define SPR_TTMR_SR     0x80000000  /* Single run */
425
#define SPR_TTMR_CR     0xc0000000  /* Continuous run */
426
#define SPR_TTMR_M      0xc0000000  /* Tick mode */
427
 
428
/*
429
 * l.nop constants
430
 *
431
 */
432
#define NOP_NOP         0x0000      /* Normal nop instruction */
433
#define NOP_EXIT        0x0001      /* End of simulation */
434
#define NOP_REPORT      0x0002      /* Simple report */
435
#define NOP_PRINTF      0x0003      /* Simprintf instruction */
436
#define NOP_REPORT_FIRST 0x0400     /* Report with number */
437
#define NOP_REPORT_LAST 0x03ff      /* Report with number */
438
 
439
#endif          // __PORT_SPR_DEFS_H__

powered by: WebSVN 2.1.0

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