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

Subversion Repositories thor

[/] [thor/] [trunk/] [rtl/] [verilog/] [Thor_defines.v] - Blame information for rev 9

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

Line No. Rev Author Line
1 3 robfinch
// ============================================================================
2
//        __
3
//   \\__/ o\    (C) 2013,2015  Robert Finch, Stratford
4
//    \  __ /    All rights reserved.
5
//     \/_//     robfinch<remove>@finitron.ca
6
//       ||
7
//
8
// This source file is free software: you can redistribute it and/or modify 
9
// it under the terms of the GNU Lesser General Public License as published 
10
// by the Free Software Foundation, either version 3 of the License, or     
11
// (at your option) any later version.                                      
12
//                                                                          
13
// This source file is distributed in the hope that it will be useful,      
14
// but WITHOUT ANY WARRANTY; without even the implied warranty of           
15
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            
16
// GNU General Public License for more details.                             
17
//                                                                          
18
// You should have received a copy of the GNU General Public License        
19
// along with this program.  If not, see <http://www.gnu.org/licenses/>.    
20
//
21
//
22
// Thor Scaler
23
//
24
// ============================================================================
25
//
26
`ifndef THOR_DEFINES
27
`define THOR_DEFINES    1'b1
28
 
29
`define SIMULATION      1'b1
30
`define SEGMENTATION    1'b1
31
//`define STACKOPS        1'b1
32
//`define BITFIELDOPS     1'b1
33
//`define FLOATING_POINT        1'b1
34
`define STRINGOPS       1'b1
35
`define DEBUG_LOGIC     1'b1
36
//`define THREEWAY    1'b1
37 9 robfinch
`define TRAP_ILLEGALOPS 1'b1
38 3 robfinch
 
39
`define TRUE    1'b1
40
`define FALSE   1'b0
41
`define INV             1'b0
42
`define VAL             1'b1
43
`define ZERO            64'd0
44
 
45
 
46 9 robfinch
`define TST                     4'b0000
47
`define CMP                     4'b0001
48
`define CMPI            4'b0010
49
`define BR                      4'b0011
50 3 robfinch
 
51
`define RR                      8'h40
52
`define ADD                             6'h00
53
`define SUB                             6'h01
54
`define MUL                             6'h02
55
`define DIV                             6'h03
56
`define ADDU                    6'h04
57
`define SUBU                    6'h05
58
`define MULU                    6'h06
59
`define DIVU                    6'h07
60
`define _2ADDU                  6'h08
61
`define _4ADDU                  6'h09
62
`define _8ADDU                  6'h0A
63
`define _16ADDU                 6'h0B
64
`define MIN             6'h10
65
`define MAX             6'h11
66
`define R2          8'h41
67
`define CPUID           4'h0
68
`define REDOR           4'h1    // reduction or
69
`define REDAND          4'h2    // reduction and
70
`define PAR             4'h3    // parity
71
`define P           8'h42
72
`define PAND            6'd0
73
`define POR             6'd1
74
`define PEOR            6'd2
75
`define PNAND           6'd3
76
`define PNOR            6'd4
77
`define PENOR           6'd5
78
`define PANDC           6'd6
79
`define PORC            6'd7
80
`define BITI        8'h46
81
`define ADDUIS      8'h47
82
`define ADDI            8'h48
83
`define SUBI            8'h49
84
`define MULI            8'h4A
85
`define DIVI            8'h4B
86
`define ADDUI           8'h4C
87
`define SUBUI           8'h4D
88
`define MULUI           8'h4E
89
`define DIVUI           8'h4F
90
`define LOGIC           8'h50
91
`define AND                             6'h0
92
`define OR                              6'h1
93
`define EOR                             6'h2
94
`define NAND                    6'h3
95
`define NOR                             6'h4
96
`define ENOR                    6'h5
97
`define ANDC                    6'h6
98
`define ORC                             6'h7
99
`define MLO         8'h51
100
`define ANDI            8'h53
101
`define ORI                     8'h54
102
`define EORI            8'h55
103
 
104
`define SHIFT           8'h58
105
`define SHL                             6'h00
106
`define SHR                             6'h01
107
`define SHLU                    6'h02
108
`define SHRU                    6'h03
109
`define ROL                             6'h04
110
`define ROR                             6'h05
111
`define SHLI                    6'h10
112
`define SHRI                    6'h11
113
`define SHLUI                   6'h12
114
`define SHRUI                   6'h13
115
`define ROLI                    6'h14
116
`define RORI                    6'h15
117
 
118
`define _2ADDUI         8'h6B
119
`define _4ADDUI         8'h6C
120
`define _8ADDUI         8'h6D
121
`define _16ADDUI        8'h6E
122
`define LDI                     8'h6F
123
 
124
`define MUX                     8'h72
125
 
126
`define FSTAT           8'h73
127
`define FRM                     8'h74
128
`define FTX                     8'h75
129
`define DOUBLE_R    8'h77
130
`define FMOV            4'h00
131
`define FTOI                4'h02
132
`define ITOF                4'h03
133
`define FNEG                    4'h04
134
`define FABS                    4'h05
135
`define FSIGN                   4'h06
136
`define FMAN            4'h07
137
`define FNABS           4'h08
138
`define FSTAT           4'h0C
139
`define FRM             4'h0D
140
`define FLOAT           8'h78
141
`define FCMP            6'h07
142
`define FADD                    6'h08
143
`define FSUB                    6'h09
144
`define FMUL                    6'h0A
145
`define FDIV                    6'h0B
146
`define FCMPS           6'h17
147
`define FADDS           6'h18
148
`define FSUBS           6'h19
149
`define FMULS           6'h1A
150
`define FDIVS           6'h1B
151
`define SINGLE_R    8'h79
152
`define FMOVS           4'h00
153
`define FTOIS               4'h02
154
`define ITOFS               4'h03
155
`define FNEGS                   4'h04
156
`define FABSS                   4'h05
157
`define FSIGNS                  4'h06
158
`define FMANS           4'h07
159
`define FNABSS          4'h08
160
`define FTX             4'h0C
161
`define FCX             4'h0D
162
`define FEX             4'h0E
163
`define FDX             4'h0F
164
 
165
`define LB                      8'h80
166
`define LBU                     8'h81
167
`define LC                      8'h82
168
`define LCU                     8'h83
169
`define LH                      8'h84
170
`define LHU                     8'h85
171
`define LW                      8'h86
172
`define LFS                     8'h87
173
`define LFD                     8'h88
174
`define LVWAR       8'h8B
175
`define SWCR        8'h8C
176
`define LEA                     8'h8D
177
`define LWS                     8'h8E
178
`define LCL                 8'h8F
179
 
180
`define SB                      8'h90
181
`define SC                      8'h91
182
`define SH                      8'h92
183
`define SW                      8'h93
184
`define SFS                     8'h94
185
`define SFD                     8'h95
186
`define STI                     8'h96
187
`define CAS                     8'h97
188
`define STS             8'h98
189
`define STMV        8'h99
190
`define STCMP       8'h9A
191
`define STFND       8'h9B
192
 
193
`define LDIT10          8'h9C
194
`define LDIS            8'h9D
195
`define SWS                     8'h9E
196
`define CACHE           8'h9F
197
 
198
// Flow control Opcodes
199
`define JSRZ        8'hA0
200
`define JSRS        8'hA1
201
`define JSR                     8'hA2
202
`define RTS                     8'hA3
203
`define LOOP            8'hA4
204
`define SYS                     8'hA5
205
`define INT                     8'hA6
206
`define R           8'hA7
207
`define MOV                         4'h0
208
`define NEG                         4'h1
209
`define NOT                         4'h2
210
`define ABS             4'h3
211
`define SGN             4'h4
212
`define CNTLZ           4'h5
213
`define CNTLO           4'h6
214
`define CNTPOP          4'h7
215
`define SXB             4'h8
216
`define SXC             4'h9
217
`define SXH             4'hA
218
`define COM             4'hB
219
`define ZXB             4'hC
220
`define ZXC             4'hD
221
`define ZXH             4'hE
222
`define MFSPR           8'hA8
223
`define MTSPR           8'hA9
224
 
225
`define BITFIELD        8'hAA
226
`define BFINS                   4'h0
227
`define BFSET                   4'h1
228
`define BFCLR                   4'h2
229
`define BFCHG                   4'h3
230
`define BFEXTU                  4'h4
231
`define BFEXT                   4'h5
232 9 robfinch
`define BFINSI          4'd6
233 3 robfinch
 
234
`define MOVS            8'hAB
235
// Uncached access instructions
236
`define LVB                     8'hAC
237
`define LVC                     8'hAD
238
`define LVH                     8'hAE
239
`define LVW                     8'hAF
240
 
241
`define LBX                     8'hB0
242
`define LBUX            8'hB1
243
`define LCX                     8'hB2
244
`define LCUX            8'hB3
245
`define LHX                     8'hB4
246
`define LHUX            8'hB5
247
`define LWX                     8'hB6
248
 
249
`define SBX                     8'hC0
250
`define SCX                     8'hC1
251
`define SHX                     8'hC2
252
`define SWX                     8'hC3
253
`define STIX        8'hC6
254
`define INC         8'hC7
255
`define PUSH        8'hC8
256
`define PEA         8'hC9
257
`define POP         8'hCA
258
`define LINK        8'hCB
259
`define UNLINK      8'hCC
260
 
261
`define TLB                     8'hF0
262
`define TLB_NOP                 4'd0
263
`define TLB_P                   4'd1
264
`define TLB_RD                  4'd2
265
`define TLB_WR                  4'd3
266
`define TLB_WI                  4'd4
267
`define TLB_EN                  4'd5
268
`define TLB_DIS                 4'd6
269
`define TLB_RDREG               4'd7
270
`define TLB_WRREG               4'd8
271
`define TLB_INVALL              4'd9
272
`define NOP                     8'hF1
273
 
274
`define TLBWired                4'h0
275
`define TLBIndex                4'h1
276
`define TLBRandom               4'h2
277
`define TLBPageSize             4'h3
278
`define TLBVirtPage             4'h4
279
`define TLBPhysPage             4'h5
280
`define TLBASID                 4'h7
281
`define TLBDMissAdr             4'd8
282
`define TLBIMissAdr             4'd9
283
`define TLBPageTblAddr  4'd10
284
`define TLBPageTblCtrl  4'd11
285
 
286
`define RTS2        8'hF2
287
`define RTE                     8'hF3
288
`define RTI                     8'hF4
289
`define BCD                     8'hF5
290
`define BCDADD                  8'h00
291
`define BCDSUB                  8'h01
292
`define BCDMUL                  8'h02
293
`define STP         8'hF6
294
`define SYNC        8'hF7
295
`define MEMSB           8'hF8   // synchronization barrier
296
`define MEMDB           8'hF9   // data barrier
297
`define CLI                     8'hFA
298
`define SEI                     8'hFB
299
`define RTD         8'hFC
300
`define IMM                     8'hFF
301
 
302
`define PREDC   3:0
303
`define PREDR   7:4
304
`define OPCODE  15:8
305
`define RA              21:16
306
`define RB              27:22
307
`define INSTRUCTION_RA  21:16
308
`define INSTRUCTION_RB  27:22
309
`define INSTRUCTION_RC  33:28
310
 
311
`define XTBL    4'd12
312
`define EPC             4'd13
313
`define IPC             4'd14
314
 
315
// Special Registers
316
`define PREGS           6'h0x
317
`define CREGS                   6'h1x
318
`define SREGS                   6'h2x
319
`define PREGS_ALL               6'h30
320
`define TICK                    6'h32
321
`define LCTR                    6'h33
322
`define ASID                    6'h36
323
`define SR                              6'h37
324
`define FPSCR           6'h38
325
`define CLK_THROTTLE    6'h3F
326
 
327
// exception types:
328
`define EXC_NONE        4'd0
329
`define EXC_HALT        4'd1
330
`define EXC_TLBMISS     4'd2
331
`define EXC_SEGV        4'd3
332
`define EXC_INVALID     4'd4
333
`define EXC_SYS         4'd5
334
`define EXC_INT         4'd6
335
`define EXC_OFL         4'd7
336
`define EXC_DBE         4'd8            // databus error
337
`define EXC_DBZ         4'd9            // divide by zero
338
`define EXC_FLT     4'd10       // floating point exception
339
`define EXC_DBG     4'd11
340
`define EXC_PRIV    4'd12
341
//
342
// define PANIC types
343
//
344
`define PANIC_NONE              4'd0
345
`define PANIC_FETCHBUFBEQ       4'd1
346
`define PANIC_INVALIDISLOT      4'd2
347
`define PANIC_MEMORYRACE        4'd3
348
`define PANIC_IDENTICALDRAMS    4'd4
349
`define PANIC_OVERRUN           4'd5
350
`define PANIC_HALTINSTRUCTION   4'd6
351
`define PANIC_INVALIDMEMOP      4'd7
352
`define PANIC_INVALIDFBSTATE    4'd9
353
`define PANIC_INVALIDIQSTATE    4'd10
354
`define PANIC_BRANCHBACK        4'd11
355
`define PANIC_BADTARGETID       4'd12
356
 
357
`define DRAMSLOT_AVAIL  2'b00
358
`define DRAMREQ_READY   2'b11
359
 
360
`endif

powered by: WebSVN 2.1.0

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