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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [orpsocv2/] [boards/] [generic/] [ft/] [rtl/] [verilog/] [include/] [or1200_defines.v] - Blame information for rev 483

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 483 julius
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  OR1200's definitions                                        ////
4
////                                                              ////
5
////  This file is part of the OpenRISC 1200 project              ////
6
////  http://opencores.org/project,or1k                           ////
7
////                                                              ////
8
////  Description                                                 ////
9
////  Defines for the OR1200 core                                 ////
10
////                                                              ////
11
////  To Do:                                                      ////
12
////   - add parameters that are missing                          ////
13
////                                                              ////
14
////  Author(s):                                                  ////
15
////      - Damjan Lampret, lampret@opencores.org                 ////
16
////                                                              ////
17
//////////////////////////////////////////////////////////////////////
18
////                                                              ////
19
//// Copyright (C) 2000 Authors and OPENCORES.ORG                 ////
20
////                                                              ////
21
//// This source file may be used and distributed without         ////
22
//// restriction provided that this copyright statement is not    ////
23
//// removed from the file and that any derivative work contains  ////
24
//// the original copyright notice and the associated disclaimer. ////
25
////                                                              ////
26
//// This source file is free software; you can redistribute it   ////
27
//// and/or modify it under the terms of the GNU Lesser General   ////
28
//// Public License as published by the Free Software Foundation; ////
29
//// either version 2.1 of the License, or (at your option) any   ////
30
//// later version.                                               ////
31
////                                                              ////
32
//// This source is distributed in the hope that it will be       ////
33
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
34
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
35
//// PURPOSE.  See the GNU Lesser General Public License for more ////
36
//// details.                                                     ////
37
////                                                              ////
38
//// You should have received a copy of the GNU Lesser General    ////
39
//// Public License along with this source; if not, download it   ////
40
//// from http://www.opencores.org/lgpl.shtml                     ////
41
////                                                              ////
42
//////////////////////////////////////////////////////////////////////
43
//
44
// $Log: or1200_defines.v,v $
45
// Revision 2.0  2010/06/30 11:00:00  ORSoC
46
// Minor update: 
47
// Defines added, bugs fixed. 
48
 
49
//
50
// Dump VCD
51
//
52
//`define OR1200_VCD_DUMP
53
 
54
//
55
// Generate debug messages during simulation
56
//
57
//`define OR1200_VERBOSE
58
 
59
//  `define OR1200_ASIC
60
////////////////////////////////////////////////////////
61
//
62
// Typical configuration for an ASIC
63
//
64
`ifdef OR1200_ASIC
65
 
66
//
67
// Target ASIC memories
68
//
69
//`define OR1200_ARTISAN_SSP
70
//`define OR1200_ARTISAN_SDP
71
//`define OR1200_ARTISAN_STP
72
`define OR1200_VIRTUALSILICON_SSP
73
//`define OR1200_VIRTUALSILICON_STP_T1
74
//`define OR1200_VIRTUALSILICON_STP_T2
75
 
76
//
77
// Do not implement Data cache
78
//
79
//`define OR1200_NO_DC
80
 
81
//
82
// Do not implement Insn cache
83
//
84
//`define OR1200_NO_IC
85
 
86
//
87
// Do not implement Data MMU
88
//
89
//`define OR1200_NO_DMMU
90
 
91
//
92
// Do not implement Insn MMU
93
//
94
//`define OR1200_NO_IMMU
95
 
96
//
97
// Select between ASIC optimized and generic multiplier
98
//
99
//`define OR1200_ASIC_MULTP2_32X32
100
`define OR1200_GENERIC_MULTP2_32X32
101
 
102
//
103
// Size/type of insn/data cache if implemented
104
//
105
// `define OR1200_IC_1W_512B
106
// `define OR1200_IC_1W_4KB
107
`define OR1200_IC_1W_8KB
108
// `define OR1200_DC_1W_4KB
109
`define OR1200_DC_1W_8KB
110
 
111
`else
112
 
113
 
114
/////////////////////////////////////////////////////////
115
//
116
// Typical configuration for an FPGA
117
//
118
 
119
//
120
// Target FPGA memories
121
//
122
//`define OR1200_ALTERA_LPM
123
//`define OR1200_XILINX_RAMB16
124
//`define OR1200_XILINX_RAMB4
125
//`define OR1200_XILINX_RAM32X1D
126
//`define OR1200_USE_RAM16X1D_FOR_RAM32X1D
127
// Generic models should infer RAM blocks at synthesis time (not only effects 
128
// single port ram.)
129
`define OR1200_GENERIC
130
 
131
//
132
// Do not implement Data cache
133
//
134
//`define OR1200_NO_DC
135
 
136
//
137
// Do not implement Insn cache
138
//
139
//`define OR1200_NO_IC
140
 
141
//
142
// Do not implement Data MMU
143
//
144
//`define OR1200_NO_DMMU
145
 
146
//
147
// Do not implement Insn MMU
148
//
149
//`define OR1200_NO_IMMU
150
 
151
//
152
// Select between ASIC and generic multiplier
153
//
154
// (Generic seems to trigger a bug in the Cadence Ncsim simulator)
155
//
156
//`define OR1200_ASIC_MULTP2_32X32
157
`define OR1200_GENERIC_MULTP2_32X32
158
 
159
//
160
// Size/type of insn/data cache if implemented
161
// (consider available FPGA memory resources)
162
//
163
//`define OR1200_IC_1W_512B
164
`define OR1200_IC_1W_4KB
165
//`define OR1200_IC_1W_8KB
166
//`define OR1200_IC_1W_16KB
167
//`define OR1200_IC_1W_32KB
168
`define OR1200_DC_1W_4KB
169
//`define OR1200_DC_1W_8KB
170
//`define OR1200_DC_1W_16KB
171
//`define OR1200_DC_1W_32KB
172
 
173
`endif
174
 
175
 
176
//////////////////////////////////////////////////////////
177
//
178
// Do not change below unless you know what you are doing
179
//
180
 
181
//
182
// Reset active low
183
//
184
//`define OR1200_RST_ACT_LOW
185
 
186
//
187
// Enable RAM BIST
188
//
189
// At the moment this only works for Virtual Silicon
190
// single port RAMs. For other RAMs it has not effect.
191
// Special wrapper for VS RAMs needs to be provided
192
// with scan flops to facilitate bist scan.
193
//
194
//`define OR1200_BIST
195
 
196
//
197
// Register OR1200 WISHBONE outputs
198
// (must be defined/enabled)
199
//
200
`define OR1200_REGISTERED_OUTPUTS
201
 
202
//
203
// Register OR1200 WISHBONE inputs
204
//
205
// (must be undefined/disabled)
206
//
207
//`define OR1200_REGISTERED_INPUTS
208
 
209
//
210
// Disable bursts if they are not supported by the
211
// memory subsystem (only affect cache line fill)
212
//
213
//`define OR1200_NO_BURSTS
214
//
215
 
216
//
217
// WISHBONE retry counter range
218
//
219
// 2^value range for retry counter. Retry counter
220
// is activated whenever *wb_rty_i is asserted and
221
// until retry counter expires, corresponding
222
// WISHBONE interface is deactivated.
223
//
224
// To disable retry counters and *wb_rty_i all together,
225
// undefine this macro.
226
//
227
//`define OR1200_WB_RETRY 7
228
 
229
//
230
// WISHBONE Consecutive Address Burst
231
//
232
// This was used prior to WISHBONE B3 specification
233
// to identify bursts. It is no longer needed but
234
// remains enabled for compatibility with old designs.
235
//
236
// To remove *wb_cab_o ports undefine this macro.
237
//
238
//`define OR1200_WB_CAB
239
 
240
//
241
// WISHBONE B3 compatible interface
242
//
243
// This follows the WISHBONE B3 specification.
244
// It is not enabled by default because most
245
// designs still don't use WB b3.
246
//
247
// To enable *wb_cti_o/*wb_bte_o ports,
248
// define this macro.
249
//
250
`define OR1200_WB_B3
251
 
252
//
253
// LOG all WISHBONE accesses
254
//
255
`define OR1200_LOG_WB_ACCESS
256
 
257
//
258
// Enable additional synthesis directives if using
259
// _Synopsys_ synthesis tool
260
//
261
//`define OR1200_ADDITIONAL_SYNOPSYS_DIRECTIVES
262
 
263
//
264
// Enables default statement in some case blocks
265
// and disables Synopsys synthesis directive full_case
266
//
267
// By default it is enabled. When disabled it
268
// can increase clock frequency.
269
//
270
`define OR1200_CASE_DEFAULT
271
 
272
//
273
// Operand width / register file address width
274
//
275
// (DO NOT CHANGE)
276
//
277
`define OR1200_OPERAND_WIDTH            32
278
`define OR1200_REGFILE_ADDR_WIDTH       5
279
 
280
//
281
// l.add/l.addi/l.and and optional l.addc/l.addic
282
// also set (compare) flag when result of their
283
// operation equals zero
284
//
285
// At the time of writing this, default or32
286
// C/C++ compiler doesn't generate code that
287
// would benefit from this optimization.
288
//
289
// By default this optimization is disabled to
290
// save area.
291
//
292
//`define OR1200_ADDITIONAL_FLAG_MODIFIERS
293
 
294
//
295
// Implement l.addc/l.addic instructions
296
//
297
// By default implementation of l.addc/l.addic
298
// instructions is enabled in case you need them.
299
// If you don't use them, then disable implementation
300
// to save area.
301
//
302
//`define OR1200_IMPL_ADDC
303
 
304
//
305
// Implement l.sub instruction
306
//
307
// By default implementation of l.sub instructions
308
// is enabled to be compliant with the simulator.
309
// If you don't use carry bit, then disable
310
// implementation to save area.
311
//
312
`define OR1200_IMPL_SUB
313
 
314
//
315
// Implement carry bit SR[CY]
316
//
317
//
318
// By default implementation of SR[CY] is enabled
319
// to be compliant with the simulator. However SR[CY]
320
// is explicitly only used by l.addc/l.addic/l.sub
321
// instructions and if these three insns are not
322
// implemented there is not much point having SR[CY].
323
//
324
//`define OR1200_IMPL_CY
325
 
326
//
327
// Implement rotate in the ALU
328
//
329
// At the time of writing this, or32
330
// C/C++ compiler doesn't generate rotate
331
// instructions. However or32 assembler
332
// can assemble code that uses rotate insn.
333
// This means that rotate instructions
334
// must be used manually inserted.
335
//
336
// By default implementation of rotate
337
// is disabled to save area and increase
338
// clock frequency.
339
//
340
//`define OR1200_IMPL_ALU_ROTATE
341
 
342
//
343
// Type of ALU compare to implement
344
//
345
// Try either one to find what yields
346
// higher clock frequencyin your case.
347
//
348
//`define OR1200_IMPL_ALU_COMP1
349
`define OR1200_IMPL_ALU_COMP2
350
 
351
//
352
// Implement Find First/Last '1'
353
//
354
`define OR1200_IMPL_ALU_FFL1
355
 
356
//
357
// Implement multiplier
358
//
359
// By default multiplier is implemented
360
//
361
`define OR1200_MULT_IMPLEMENTED
362
 
363
//
364
// Implement multiply-and-accumulate
365
//
366
// By default MAC is implemented. To
367
// implement MAC, multiplier (non-serial) needs to be
368
// implemented.
369
//
370
`define OR1200_MAC_IMPLEMENTED
371
 
372
//
373
// Implement optional l.div/l.divu instructions
374
//
375
// By default divide instructions are not implemented
376
// to save area.
377
//
378
//
379
`define OR1200_DIV_IMPLEMENTED
380
 
381
//
382
// Serial multiplier.
383
//
384
//`define OR1200_MULT_SERIAL
385
 
386
//
387
// Serial divider.
388
// Uncomment to use a serial divider, otherwise will
389
// be a generic parallel implementation.
390
//
391
//`define OR1200_DIV_SERIAL
392
 
393
//
394
// Implement HW Single Precision FPU
395
//
396
`define OR1200_FPU_IMPLEMENTED
397
 
398
 
399
//
400
// Clock ratio RISC clock versus WB clock
401
//
402
// If you plan to run WB:RISC clock fixed to 1:1, disable
403
// both defines
404
//
405
// For WB:RISC 1:2 or 1:1, enable OR1200_CLKDIV_2_SUPPORTED
406
// and use clmode to set ratio
407
//
408
// For WB:RISC 1:4, 1:2 or 1:1, enable both defines and use
409
// clmode to set ratio
410
//
411
//`define OR1200_CLKDIV_2_SUPPORTED
412
//`define OR1200_CLKDIV_4_SUPPORTED
413
 
414
//
415
// Type of register file RAM
416
//
417
// Memory macro w/ two ports (see or1200_tpram_32x32.v)
418
//`define OR1200_RFRAM_TWOPORT
419
//
420
// Memory macro dual port (see or1200_dpram.v)
421
`define OR1200_RFRAM_DUALPORT
422
 
423
//
424
// Generic (flip-flop based) register file (see or1200_rfram_generic.v)
425
//`define OR1200_RFRAM_GENERIC
426
//  Generic register file supports - 16 registers 
427
`ifdef OR1200_RFRAM_GENERIC
428
//    `define OR1200_RFRAM_16REG
429
`endif
430
 
431
//
432
// Type of mem2reg aligner to implement.
433
//
434
// Once OR1200_IMPL_MEM2REG2 yielded faster
435
// circuit, however with today tools it will
436
// most probably give you slower circuit.
437
//
438
`define OR1200_IMPL_MEM2REG1
439
//`define OR1200_IMPL_MEM2REG2
440
 
441
//
442
// Parity error detection.
443
//
444
// Add a parity bit for each byte held in various memories around the OR1200
445
// and signal externally in event of parity error.
446
`define OR1200_RAM_PARITY
447
 
448
 
449
//
450
// Reset value and event
451
//
452
`ifdef OR1200_RST_ACT_LOW
453
  `define OR1200_RST_VALUE      (1'b0)
454
  `define OR1200_RST_EVENT      negedge
455
`else
456
  `define OR1200_RST_VALUE      (1'b1)
457
  `define OR1200_RST_EVENT      posedge
458
`endif
459
 
460
//
461
// ALUOPs
462
//
463
`define OR1200_ALUOP_WIDTH      4
464
`define OR1200_ALUOP_NOP        4'd4
465
/* Order defined by arith insns that have two source operands both in regs
466
   (see binutils/include/opcode/or32.h) */
467
`define OR1200_ALUOP_ADD        4'd0
468
`define OR1200_ALUOP_ADDC       4'd1
469
`define OR1200_ALUOP_SUB        4'd2
470
`define OR1200_ALUOP_AND        4'd3
471
`define OR1200_ALUOP_OR         4'd4
472
`define OR1200_ALUOP_XOR        4'd5
473
`define OR1200_ALUOP_MUL        4'd6
474
`define OR1200_ALUOP_CUST5      4'd7
475
`define OR1200_ALUOP_SHROT      4'd8
476
`define OR1200_ALUOP_DIV        4'd9
477
`define OR1200_ALUOP_DIVU       4'd10
478
`define OR1200_ALUOP_MULU       4'd11
479
/* Values sent to ALU from decode unit - not strictly defined by ISA */
480
`define OR1200_ALUOP_MOVHI      4'd12
481
`define OR1200_ALUOP_COMP       4'd13
482
`define OR1200_ALUOP_MTSR       4'd14
483
`define OR1200_ALUOP_MFSR       4'd15
484
`define OR1200_ALUOP_CMOV       4'd14
485
`define OR1200_ALUOP_FFL1       4'd15
486
 
487
 
488
// ALU instructions second opcode field (previously multicycle field in 
489
// machine word)
490
`define OR1200_ALUOP2_POS               9:8
491
`define OR1200_ALUOP2_WIDTH     2
492
 
493
 
494
//
495
// MACOPs
496
//
497
`define OR1200_MACOP_WIDTH      3
498
`define OR1200_MACOP_NOP        3'b000
499
`define OR1200_MACOP_MAC        3'b001
500
`define OR1200_MACOP_MSB        3'b010
501
 
502
//
503
// Shift/rotate ops
504
//
505
`define OR1200_SHROTOP_WIDTH    2
506
`define OR1200_SHROTOP_NOP      2'd0
507
`define OR1200_SHROTOP_SLL      2'd0
508
`define OR1200_SHROTOP_SRL      2'd1
509
`define OR1200_SHROTOP_SRA      2'd2
510
`define OR1200_SHROTOP_ROR      2'd3
511
 
512
// Execution cycles per instruction
513
`define OR1200_MULTICYCLE_WIDTH 3
514
`define OR1200_ONE_CYCLE                3'd0
515
`define OR1200_TWO_CYCLES               3'd1
516
 
517
// Execution control which will "wait on" a module to finish
518
`define OR1200_WAIT_ON_WIDTH 2
519
`define OR1200_WAIT_ON_FPU `OR1200_WAIT_ON_WIDTH'd1
520
`define OR1200_WAIT_ON_MTSPR `OR1200_WAIT_ON_WIDTH'd2
521
 
522
// Operand MUX selects
523
`define OR1200_SEL_WIDTH                2
524
`define OR1200_SEL_RF                   2'd0
525
`define OR1200_SEL_IMM                  2'd1
526
`define OR1200_SEL_EX_FORW              2'd2
527
`define OR1200_SEL_WB_FORW              2'd3
528
 
529
//
530
// BRANCHOPs
531
//
532
`define OR1200_BRANCHOP_WIDTH           3
533
`define OR1200_BRANCHOP_NOP             3'd0
534
`define OR1200_BRANCHOP_J               3'd1
535
`define OR1200_BRANCHOP_JR              3'd2
536
`define OR1200_BRANCHOP_BAL             3'd3
537
`define OR1200_BRANCHOP_BF              3'd4
538
`define OR1200_BRANCHOP_BNF             3'd5
539
`define OR1200_BRANCHOP_RFE             3'd6
540
 
541
//
542
// LSUOPs
543
//
544
// Bit 0: sign extend
545
// Bits 1-2: 00 doubleword, 01 byte, 10 halfword, 11 singleword
546
// Bit 3: 0 load, 1 store
547
`define OR1200_LSUOP_WIDTH              4
548
`define OR1200_LSUOP_NOP                4'b0000
549
`define OR1200_LSUOP_LBZ                4'b0010
550
`define OR1200_LSUOP_LBS                4'b0011
551
`define OR1200_LSUOP_LHZ                4'b0100
552
`define OR1200_LSUOP_LHS                4'b0101
553
`define OR1200_LSUOP_LWZ                4'b0110
554
`define OR1200_LSUOP_LWS                4'b0111
555
`define OR1200_LSUOP_LD                 4'b0001
556
`define OR1200_LSUOP_SD                 4'b1000
557
`define OR1200_LSUOP_SB                 4'b1010
558
`define OR1200_LSUOP_SH                 4'b1100
559
`define OR1200_LSUOP_SW                 4'b1110
560
 
561
// Number of bits of load/store EA precalculated in ID stage
562
// for balancing ID and EX stages.
563
//
564
// Valid range: 2,3,...,30,31
565
`define OR1200_LSUEA_PRECALC            2
566
 
567
// FETCHOPs
568
`define OR1200_FETCHOP_WIDTH            1
569
`define OR1200_FETCHOP_NOP              1'b0
570
`define OR1200_FETCHOP_LW               1'b1
571
 
572
//
573
// Register File Write-Back OPs
574
//
575
// Bit 0: register file write enable
576
// Bits 3-1: write-back mux selects
577
//
578
`define OR1200_RFWBOP_WIDTH             4
579
`define OR1200_RFWBOP_NOP               4'b0000
580
`define OR1200_RFWBOP_ALU               3'b000
581
`define OR1200_RFWBOP_LSU               3'b001
582
`define OR1200_RFWBOP_SPRS              3'b010
583
`define OR1200_RFWBOP_LR                3'b011
584
`define OR1200_RFWBOP_FPU               3'b100
585
 
586
// Compare instructions
587
`define OR1200_COP_SFEQ       3'b000
588
`define OR1200_COP_SFNE       3'b001
589
`define OR1200_COP_SFGT       3'b010
590
`define OR1200_COP_SFGE       3'b011
591
`define OR1200_COP_SFLT       3'b100
592
`define OR1200_COP_SFLE       3'b101
593
`define OR1200_COP_X          3'b111
594
`define OR1200_SIGNED_COMPARE 'd3
595
`define OR1200_COMPOP_WIDTH     4
596
 
597
//
598
// FP OPs
599
//
600
// MSbit indicates FPU operation valid
601
//
602
`define OR1200_FPUOP_WIDTH      8
603
// FPU unit from Usselman takes 5 cycles from decode, so 4 ex. cycles
604
`define OR1200_FPUOP_CYCLES 3'd4
605
// FP instruction is double precision if bit 4 is set. We're a 32-bit 
606
// implementation thus do not support double precision FP 
607
`define OR1200_FPUOP_DOUBLE_BIT 4
608
`define OR1200_FPUOP_ADD  8'b0000_0000
609
`define OR1200_FPUOP_SUB  8'b0000_0001
610
`define OR1200_FPUOP_MUL  8'b0000_0010
611
`define OR1200_FPUOP_DIV  8'b0000_0011
612
`define OR1200_FPUOP_ITOF 8'b0000_0100
613
`define OR1200_FPUOP_FTOI 8'b0000_0101
614
`define OR1200_FPUOP_REM  8'b0000_0110
615
`define OR1200_FPUOP_RESERVED  8'b0000_0111
616
// FP Compare instructions
617
`define OR1200_FPCOP_SFEQ 8'b0000_1000
618
`define OR1200_FPCOP_SFNE 8'b0000_1001
619
`define OR1200_FPCOP_SFGT 8'b0000_1010
620
`define OR1200_FPCOP_SFGE 8'b0000_1011
621
`define OR1200_FPCOP_SFLT 8'b0000_1100
622
`define OR1200_FPCOP_SFLE 8'b0000_1101
623
 
624
//
625
// TAGs for instruction bus
626
//
627
`define OR1200_ITAG_IDLE        4'h0    // idle bus
628
`define OR1200_ITAG_NI          4'h1    // normal insn
629
`define OR1200_ITAG_BE          4'hb    // Bus error exception
630
`define OR1200_ITAG_PE          4'hc    // Page fault exception
631
`define OR1200_ITAG_TE          4'hd    // TLB miss exception
632
 
633
//
634
// TAGs for data bus
635
//
636
`define OR1200_DTAG_IDLE        4'h0    // idle bus
637
`define OR1200_DTAG_ND          4'h1    // normal data
638
`define OR1200_DTAG_AE          4'ha    // Alignment exception
639
`define OR1200_DTAG_BE          4'hb    // Bus error exception
640
`define OR1200_DTAG_PE          4'hc    // Page fault exception
641
`define OR1200_DTAG_TE          4'hd    // TLB miss exception
642
 
643
 
644
//////////////////////////////////////////////
645
//
646
// ORBIS32 ISA specifics
647
//
648
 
649
// SHROT_OP position in machine word
650
`define OR1200_SHROTOP_POS              7:6
651
 
652
//
653
// Instruction opcode groups (basic)
654
//
655
`define OR1200_OR32_J                 6'b000000
656
`define OR1200_OR32_JAL               6'b000001
657
`define OR1200_OR32_BNF               6'b000011
658
`define OR1200_OR32_BF                6'b000100
659
`define OR1200_OR32_NOP               6'b000101
660
`define OR1200_OR32_MOVHI             6'b000110
661
`define OR1200_OR32_XSYNC             6'b001000
662
`define OR1200_OR32_RFE               6'b001001
663
/* */
664
`define OR1200_OR32_JR                6'b010001
665
`define OR1200_OR32_JALR              6'b010010
666
`define OR1200_OR32_MACI              6'b010011
667
/* */
668
`define OR1200_OR32_LWZ               6'b100001
669
`define OR1200_OR32_LBZ               6'b100011
670
`define OR1200_OR32_LBS               6'b100100
671
`define OR1200_OR32_LHZ               6'b100101
672
`define OR1200_OR32_LHS               6'b100110
673
`define OR1200_OR32_ADDI              6'b100111
674
`define OR1200_OR32_ADDIC             6'b101000
675
`define OR1200_OR32_ANDI              6'b101001
676
`define OR1200_OR32_ORI               6'b101010
677
`define OR1200_OR32_XORI              6'b101011
678
`define OR1200_OR32_MULI              6'b101100
679
`define OR1200_OR32_MFSPR             6'b101101
680
`define OR1200_OR32_SH_ROTI           6'b101110
681
`define OR1200_OR32_SFXXI             6'b101111
682
/* */
683
`define OR1200_OR32_MTSPR             6'b110000
684
`define OR1200_OR32_MACMSB            6'b110001
685
`define OR1200_OR32_FLOAT             6'b110010
686
/* */
687
`define OR1200_OR32_SW                6'b110101
688
`define OR1200_OR32_SB                6'b110110
689
`define OR1200_OR32_SH                6'b110111
690
`define OR1200_OR32_ALU               6'b111000
691
`define OR1200_OR32_SFXX              6'b111001
692
//`define OR1200_OR32_CUST5             6'b111100
693
 
694
 
695
/////////////////////////////////////////////////////
696
//
697
// Exceptions
698
//
699
 
700
//
701
// Exception vectors per OR1K architecture:
702
// 0xPPPPP100 - reset
703
// 0xPPPPP200 - bus error
704
// ... etc
705
// where P represents exception prefix.
706
//
707
// Exception vectors can be customized as per
708
// the following formula:
709
// 0xPPPPPNVV - exception N
710
//
711
// P represents exception prefix
712
// N represents exception N
713
// VV represents length of the individual vector space,
714
//   usually it is 8 bits wide and starts with all bits zero
715
//
716
 
717
//
718
// PPPPP and VV parts
719
//
720
// Sum of these two defines needs to be 28
721
//
722
`define OR1200_EXCEPT_EPH0_P    20'h00000
723
`define OR1200_EXCEPT_EPH1_P    20'hF0000
724
`define OR1200_EXCEPT_V             8'h00
725
 
726
//
727
// N part width
728
//
729
`define OR1200_EXCEPT_WIDTH 4
730
 
731
//
732
// Definition of exception vectors
733
//
734
// To avoid implementation of a certain exception,
735
// simply comment out corresponding line
736
//
737
`define OR1200_EXCEPT_UNUSED            `OR1200_EXCEPT_WIDTH'hf
738
`define OR1200_EXCEPT_TRAP              `OR1200_EXCEPT_WIDTH'he
739
`define OR1200_EXCEPT_FLOAT             `OR1200_EXCEPT_WIDTH'hd
740
`define OR1200_EXCEPT_SYSCALL           `OR1200_EXCEPT_WIDTH'hc
741
`define OR1200_EXCEPT_RANGE             `OR1200_EXCEPT_WIDTH'hb
742
`define OR1200_EXCEPT_ITLBMISS          `OR1200_EXCEPT_WIDTH'ha
743
`define OR1200_EXCEPT_DTLBMISS          `OR1200_EXCEPT_WIDTH'h9
744
`define OR1200_EXCEPT_INT               `OR1200_EXCEPT_WIDTH'h8
745
`define OR1200_EXCEPT_ILLEGAL           `OR1200_EXCEPT_WIDTH'h7
746
`define OR1200_EXCEPT_ALIGN             `OR1200_EXCEPT_WIDTH'h6
747
`define OR1200_EXCEPT_TICK              `OR1200_EXCEPT_WIDTH'h5
748
`define OR1200_EXCEPT_IPF               `OR1200_EXCEPT_WIDTH'h4
749
`define OR1200_EXCEPT_DPF               `OR1200_EXCEPT_WIDTH'h3
750
`define OR1200_EXCEPT_BUSERR            `OR1200_EXCEPT_WIDTH'h2
751
`define OR1200_EXCEPT_RESET             `OR1200_EXCEPT_WIDTH'h1
752
`define OR1200_EXCEPT_NONE              `OR1200_EXCEPT_WIDTH'h0
753
 
754
 
755
/////////////////////////////////////////////////////
756
//
757
// SPR groups
758
//
759
 
760
// Bits that define the group
761
`define OR1200_SPR_GROUP_BITS   15:11
762
 
763
// Width of the group bits
764
`define OR1200_SPR_GROUP_WIDTH  5
765
 
766
// Bits that define offset inside the group
767
`define OR1200_SPR_OFS_BITS 10:0
768
 
769
// List of groups
770
`define OR1200_SPR_GROUP_SYS    5'd00
771
`define OR1200_SPR_GROUP_DMMU   5'd01
772
`define OR1200_SPR_GROUP_IMMU   5'd02
773
`define OR1200_SPR_GROUP_DC     5'd03
774
`define OR1200_SPR_GROUP_IC     5'd04
775
`define OR1200_SPR_GROUP_MAC    5'd05
776
`define OR1200_SPR_GROUP_DU     5'd06
777
`define OR1200_SPR_GROUP_PM     5'd08
778
`define OR1200_SPR_GROUP_PIC    5'd09
779
`define OR1200_SPR_GROUP_TT     5'd10
780
`define OR1200_SPR_GROUP_FPU    5'd11
781
 
782
/////////////////////////////////////////////////////
783
//
784
// System group
785
//
786
 
787
//
788
// System registers
789
//
790
`define OR1200_SPR_CFGR         7'd0
791
`define OR1200_SPR_RF           6'd32   // 1024 >> 5
792
`define OR1200_SPR_NPC          11'd16
793
`define OR1200_SPR_SR           11'd17
794
`define OR1200_SPR_PPC          11'd18
795
`define OR1200_SPR_FPCSR        11'd20
796
`define OR1200_SPR_EPCR         11'd32
797
`define OR1200_SPR_EEAR         11'd48
798
`define OR1200_SPR_ESR          11'd64
799
 
800
//
801
// SR bits
802
//
803
`define OR1200_SR_WIDTH 17
804
`define OR1200_SR_SM   0
805
`define OR1200_SR_TEE  1
806
`define OR1200_SR_IEE  2
807
`define OR1200_SR_DCE  3
808
`define OR1200_SR_ICE  4
809
`define OR1200_SR_DME  5
810
`define OR1200_SR_IME  6
811
`define OR1200_SR_LEE  7
812
`define OR1200_SR_CE   8
813
`define OR1200_SR_F    9
814
`define OR1200_SR_CY   10       // Unused
815
`define OR1200_SR_OV   11       // Unused
816
`define OR1200_SR_OVE  12       // Unused
817
`define OR1200_SR_DSX  13       // Unused
818
`define OR1200_SR_EPH  14
819
`define OR1200_SR_FO   15
820
`define OR1200_SR_TED  16
821
`define OR1200_SR_CID  31:28    // Unimplemented
822
 
823
//
824
// Bits that define offset inside the group
825
//
826
`define OR1200_SPROFS_BITS 10:0
827
 
828
//
829
// Default Exception Prefix
830
//
831
// 1'b0 - OR1200_EXCEPT_EPH0_P (0x0000_0000)
832
// 1'b1 - OR1200_EXCEPT_EPH1_P (0xF000_0000)
833
//
834
`define OR1200_SR_EPH_DEF       1'b0
835
 
836
 
837
//
838
// FPCSR bits
839
//
840
`define OR1200_FPCSR_WIDTH 12
841
`define OR1200_FPCSR_FPEE  0
842
`define OR1200_FPCSR_RM    2:1
843
`define OR1200_FPCSR_OVF   3
844
`define OR1200_FPCSR_UNF   4
845
`define OR1200_FPCSR_SNF   5
846
`define OR1200_FPCSR_QNF   6
847
`define OR1200_FPCSR_ZF    7
848
`define OR1200_FPCSR_IXF   8
849
`define OR1200_FPCSR_IVF   9
850
`define OR1200_FPCSR_INF   10
851
`define OR1200_FPCSR_DZF   11
852
`define OR1200_FPCSR_RES   31:12
853
 
854
/////////////////////////////////////////////////////
855
//
856
// Power Management (PM)
857
//
858
 
859
// Define it if you want PM implemented
860
//`define OR1200_PM_IMPLEMENTED
861
 
862
// Bit positions inside PMR (don't change)
863
`define OR1200_PM_PMR_SDF 3:0
864
`define OR1200_PM_PMR_DME 4
865
`define OR1200_PM_PMR_SME 5
866
`define OR1200_PM_PMR_DCGE 6
867
`define OR1200_PM_PMR_UNUSED 31:7
868
 
869
// PMR offset inside PM group of registers
870
`define OR1200_PM_OFS_PMR 11'b0
871
 
872
// PM group
873
`define OR1200_SPRGRP_PM 5'd8
874
 
875
// Define if PMR can be read/written at any address inside PM group
876
`define OR1200_PM_PARTIAL_DECODING
877
 
878
// Define if reading PMR is allowed
879
`define OR1200_PM_READREGS
880
 
881
// Define if unused PMR bits should be zero
882
`define OR1200_PM_UNUSED_ZERO
883
 
884
 
885
/////////////////////////////////////////////////////
886
//
887
// Debug Unit (DU)
888
//
889
 
890
// Define it if you want DU implemented
891
`define OR1200_DU_IMPLEMENTED
892
 
893
//
894
// Define if you want HW Breakpoints
895
// (if HW breakpoints are not implemented
896
// only default software trapping is
897
// possible with l.trap insn - this is
898
// however already enough for use
899
// with or32 gdb)
900
//
901
//`define OR1200_DU_HWBKPTS
902
 
903
// Number of DVR/DCR pairs if HW breakpoints enabled
904
//      Comment / uncomment DU_DVRn / DU_DCRn pairs bellow according to this number ! 
905
//      DU_DVR0..DU_DVR7 should be uncommented for 8 DU_DVRDCR_PAIRS 
906
`define OR1200_DU_DVRDCR_PAIRS 8
907
 
908
// Define if you want trace buffer
909
//      (for now only available for Xilinx Virtex FPGAs)
910
//`define OR1200_DU_TB_IMPLEMENTED
911
 
912
 
913
//
914
// Address offsets of DU registers inside DU group
915
//
916
// To not implement a register, doq not define its address
917
//
918
`ifdef OR1200_DU_HWBKPTS
919
`define OR1200_DU_DVR0          11'd0
920
`define OR1200_DU_DVR1          11'd1
921
`define OR1200_DU_DVR2          11'd2
922
`define OR1200_DU_DVR3          11'd3
923
`define OR1200_DU_DVR4          11'd4
924
`define OR1200_DU_DVR5          11'd5
925
`define OR1200_DU_DVR6          11'd6
926
`define OR1200_DU_DVR7          11'd7
927
`define OR1200_DU_DCR0          11'd8
928
`define OR1200_DU_DCR1          11'd9
929
`define OR1200_DU_DCR2          11'd10
930
`define OR1200_DU_DCR3          11'd11
931
`define OR1200_DU_DCR4          11'd12
932
`define OR1200_DU_DCR5          11'd13
933
`define OR1200_DU_DCR6          11'd14
934
`define OR1200_DU_DCR7          11'd15
935
`endif
936
`define OR1200_DU_DMR1          11'd16
937
`ifdef OR1200_DU_HWBKPTS
938
`define OR1200_DU_DMR2          11'd17
939
`define OR1200_DU_DWCR0         11'd18
940
`define OR1200_DU_DWCR1         11'd19
941
`endif
942
`define OR1200_DU_DSR           11'd20
943
`define OR1200_DU_DRR           11'd21
944
`ifdef OR1200_DU_TB_IMPLEMENTED
945
`define OR1200_DU_TBADR         11'h0ff
946
`define OR1200_DU_TBIA          11'h1??
947
`define OR1200_DU_TBIM          11'h2??
948
`define OR1200_DU_TBAR          11'h3??
949
`define OR1200_DU_TBTS          11'h4??
950
`endif
951
 
952
// Position of offset bits inside SPR address
953
`define OR1200_DUOFS_BITS       10:0
954
 
955
// DCR bits
956
`define OR1200_DU_DCR_DP        0
957
`define OR1200_DU_DCR_CC        3:1
958
`define OR1200_DU_DCR_SC        4
959
`define OR1200_DU_DCR_CT        7:5
960
 
961
// DMR1 bits
962
`define OR1200_DU_DMR1_CW0      1:0
963
`define OR1200_DU_DMR1_CW1      3:2
964
`define OR1200_DU_DMR1_CW2      5:4
965
`define OR1200_DU_DMR1_CW3      7:6
966
`define OR1200_DU_DMR1_CW4      9:8
967
`define OR1200_DU_DMR1_CW5      11:10
968
`define OR1200_DU_DMR1_CW6      13:12
969
`define OR1200_DU_DMR1_CW7      15:14
970
`define OR1200_DU_DMR1_CW8      17:16
971
`define OR1200_DU_DMR1_CW9      19:18
972
`define OR1200_DU_DMR1_CW10     21:20
973
`define OR1200_DU_DMR1_ST       22
974
`define OR1200_DU_DMR1_BT       23
975
`define OR1200_DU_DMR1_DXFW     24
976
`define OR1200_DU_DMR1_ETE      25
977
 
978
// DMR2 bits
979
`define OR1200_DU_DMR2_WCE0     0
980
`define OR1200_DU_DMR2_WCE1     1
981
`define OR1200_DU_DMR2_AWTC     12:2
982
`define OR1200_DU_DMR2_WGB      23:13
983
 
984
// DWCR bits
985
`define OR1200_DU_DWCR_COUNT    15:0
986
`define OR1200_DU_DWCR_MATCH    31:16
987
 
988
// DSR bits
989
`define OR1200_DU_DSR_WIDTH     14
990
`define OR1200_DU_DSR_RSTE      0
991
`define OR1200_DU_DSR_BUSEE     1
992
`define OR1200_DU_DSR_DPFE      2
993
`define OR1200_DU_DSR_IPFE      3
994
`define OR1200_DU_DSR_TTE       4
995
`define OR1200_DU_DSR_AE        5
996
`define OR1200_DU_DSR_IIE       6
997
`define OR1200_DU_DSR_IE        7
998
`define OR1200_DU_DSR_DME       8
999
`define OR1200_DU_DSR_IME       9
1000
`define OR1200_DU_DSR_RE        10
1001
`define OR1200_DU_DSR_SCE       11
1002
`define OR1200_DU_DSR_FPE       12
1003
`define OR1200_DU_DSR_TE        13
1004
 
1005
// DRR bits
1006
`define OR1200_DU_DRR_RSTE      0
1007
`define OR1200_DU_DRR_BUSEE     1
1008
`define OR1200_DU_DRR_DPFE      2
1009
`define OR1200_DU_DRR_IPFE      3
1010
`define OR1200_DU_DRR_TTE       4
1011
`define OR1200_DU_DRR_AE        5
1012
`define OR1200_DU_DRR_IIE       6
1013
`define OR1200_DU_DRR_IE        7
1014
`define OR1200_DU_DRR_DME       8
1015
`define OR1200_DU_DRR_IME       9
1016
`define OR1200_DU_DRR_RE        10
1017
`define OR1200_DU_DRR_SCE       11
1018
`define OR1200_DU_DRR_FPE       12
1019
`define OR1200_DU_DRR_TE        13
1020
 
1021
// Define if reading DU regs is allowed
1022
`define OR1200_DU_READREGS
1023
 
1024
// Define if unused DU registers bits should be zero
1025
`define OR1200_DU_UNUSED_ZERO
1026
 
1027
// Define if IF/LSU status is not needed by devel i/f
1028
`define OR1200_DU_STATUS_UNIMPLEMENTED
1029
 
1030
/////////////////////////////////////////////////////
1031
//
1032
// Programmable Interrupt Controller (PIC)
1033
//
1034
 
1035
// Define it if you want PIC implemented
1036
`define OR1200_PIC_IMPLEMENTED
1037
 
1038
// Define number of interrupt inputs (2-31)
1039
`define OR1200_PIC_INTS 20
1040
 
1041
// Address offsets of PIC registers inside PIC group
1042
`define OR1200_PIC_OFS_PICMR 2'd0
1043
`define OR1200_PIC_OFS_PICSR 2'd2
1044
 
1045
// Position of offset bits inside SPR address
1046
`define OR1200_PICOFS_BITS 1:0
1047
 
1048
// Define if you want these PIC registers to be implemented
1049
`define OR1200_PIC_PICMR
1050
`define OR1200_PIC_PICSR
1051
 
1052
// Define if reading PIC registers is allowed
1053
`define OR1200_PIC_READREGS
1054
 
1055
// Define if unused PIC register bits should be zero
1056
`define OR1200_PIC_UNUSED_ZERO
1057
 
1058
 
1059
/////////////////////////////////////////////////////
1060
//
1061
// Tick Timer (TT)
1062
//
1063
 
1064
// Define it if you want TT implemented
1065
`define OR1200_TT_IMPLEMENTED
1066
 
1067
// Address offsets of TT registers inside TT group
1068
`define OR1200_TT_OFS_TTMR 1'd0
1069
`define OR1200_TT_OFS_TTCR 1'd1
1070
 
1071
// Position of offset bits inside SPR group
1072
`define OR1200_TTOFS_BITS 0
1073
 
1074
// Define if you want these TT registers to be implemented
1075
`define OR1200_TT_TTMR
1076
`define OR1200_TT_TTCR
1077
 
1078
// TTMR bits
1079
`define OR1200_TT_TTMR_TP 27:0
1080
`define OR1200_TT_TTMR_IP 28
1081
`define OR1200_TT_TTMR_IE 29
1082
`define OR1200_TT_TTMR_M 31:30
1083
 
1084
// Define if reading TT registers is allowed
1085
`define OR1200_TT_READREGS
1086
 
1087
 
1088
//////////////////////////////////////////////
1089
//
1090
// MAC
1091
//
1092
`define OR1200_MAC_ADDR         0        // MACLO 0xxxxxxxx1, MACHI 0xxxxxxxx0
1093
`define OR1200_MAC_SPR_WE               // Define if MACLO/MACHI are SPR writable
1094
 
1095
//
1096
// Shift {MACHI,MACLO} into destination register when executing l.macrc
1097
//
1098
// According to architecture manual there is no shift, so default value is 0.
1099
// However the implementation has deviated in this from the arch manual and had
1100
// hard coded shift by 28 bits which is a useful optimization for MP3 decoding 
1101
// (if using libmad fixed point library). Shifts are no longer default setup, 
1102
// but if you need to remain backward compatible, define your shift bits, which
1103
// were normally
1104
// dest_GPR = {MACHI,MACLO}[59:28]
1105
`define OR1200_MAC_SHIFTBY      0        // 0 = According to arch manual, 28 = obsolete backward compatibility
1106
 
1107
 
1108
//////////////////////////////////////////////
1109
//
1110
// Data MMU (DMMU)
1111
//
1112
 
1113
//
1114
// Address that selects between TLB TR and MR
1115
//
1116
`define OR1200_DTLB_TM_ADDR     7
1117
 
1118
//
1119
// DTLBMR fields
1120
//
1121
`define OR1200_DTLBMR_V_BITS    0
1122
`define OR1200_DTLBMR_CID_BITS  4:1
1123
`define OR1200_DTLBMR_RES_BITS  11:5
1124
`define OR1200_DTLBMR_VPN_BITS  31:13
1125
 
1126
//
1127
// DTLBTR fields
1128
//
1129
`define OR1200_DTLBTR_CC_BITS   0
1130
`define OR1200_DTLBTR_CI_BITS   1
1131
`define OR1200_DTLBTR_WBC_BITS  2
1132
`define OR1200_DTLBTR_WOM_BITS  3
1133
`define OR1200_DTLBTR_A_BITS    4
1134
`define OR1200_DTLBTR_D_BITS    5
1135
`define OR1200_DTLBTR_URE_BITS  6
1136
`define OR1200_DTLBTR_UWE_BITS  7
1137
`define OR1200_DTLBTR_SRE_BITS  8
1138
`define OR1200_DTLBTR_SWE_BITS  9
1139
`define OR1200_DTLBTR_RES_BITS  11:10
1140
`define OR1200_DTLBTR_PPN_BITS  31:13
1141
 
1142
//
1143
// DTLB configuration
1144
//
1145
`define OR1200_DMMU_PS          13                                      // 13 for 8KB page size
1146
`define OR1200_DTLB_INDXW       6                                       // 6 for 64 entry DTLB  7 for 128 entries
1147
`define OR1200_DTLB_INDXL       `OR1200_DMMU_PS                         // 13                   13
1148
`define OR1200_DTLB_INDXH       `OR1200_DMMU_PS+`OR1200_DTLB_INDXW-1    // 18                   19
1149
`define OR1200_DTLB_INDX        `OR1200_DTLB_INDXH:`OR1200_DTLB_INDXL   // 18:13                19:13
1150
`define OR1200_DTLB_TAGW        32-`OR1200_DTLB_INDXW-`OR1200_DMMU_PS   // 13                   12
1151
`define OR1200_DTLB_TAGL        `OR1200_DTLB_INDXH+1                    // 19                   20
1152
`define OR1200_DTLB_TAG         31:`OR1200_DTLB_TAGL                    // 31:19                31:20
1153
`define OR1200_DTLBMRW          `OR1200_DTLB_TAGW+1                     // +1 because of V bit
1154
`define OR1200_DTLBTRW          32-`OR1200_DMMU_PS+5                    // +5 because of protection bits and CI
1155
 
1156
//
1157
// Cache inhibit while DMMU is not enabled/implemented
1158
//
1159
// cache inhibited 0GB-4GB              1'b1
1160
// cache inhibited 0GB-2GB              !dcpu_adr_i[31]
1161
// cache inhibited 0GB-1GB 2GB-3GB      !dcpu_adr_i[30]
1162
// cache inhibited 1GB-2GB 3GB-4GB      dcpu_adr_i[30]
1163
// cache inhibited 2GB-4GB (default)    dcpu_adr_i[31]
1164
// cached 0GB-4GB                       1'b0
1165
//
1166
`define OR1200_DMMU_CI                  dcpu_adr_i[31]
1167
 
1168
 
1169
//////////////////////////////////////////////
1170
//
1171
// Insn MMU (IMMU)
1172
//
1173
 
1174
//
1175
// Address that selects between TLB TR and MR
1176
//
1177
`define OR1200_ITLB_TM_ADDR     7
1178
 
1179
//
1180
// ITLBMR fields
1181
//
1182
`define OR1200_ITLBMR_V_BITS    0
1183
`define OR1200_ITLBMR_CID_BITS  4:1
1184
`define OR1200_ITLBMR_RES_BITS  11:5
1185
`define OR1200_ITLBMR_VPN_BITS  31:13
1186
 
1187
//
1188
// ITLBTR fields
1189
//
1190
`define OR1200_ITLBTR_CC_BITS   0
1191
`define OR1200_ITLBTR_CI_BITS   1
1192
`define OR1200_ITLBTR_WBC_BITS  2
1193
`define OR1200_ITLBTR_WOM_BITS  3
1194
`define OR1200_ITLBTR_A_BITS    4
1195
`define OR1200_ITLBTR_D_BITS    5
1196
`define OR1200_ITLBTR_SXE_BITS  6
1197
`define OR1200_ITLBTR_UXE_BITS  7
1198
`define OR1200_ITLBTR_RES_BITS  11:8
1199
`define OR1200_ITLBTR_PPN_BITS  31:13
1200
 
1201
//
1202
// ITLB configuration
1203
//
1204
`define OR1200_IMMU_PS          13                                      // 13 for 8KB page size
1205
`define OR1200_ITLB_INDXW       6                                       // 6 for 64 entry ITLB  7 for 128 entries
1206
`define OR1200_ITLB_INDXL       `OR1200_IMMU_PS                         // 13                   13
1207
`define OR1200_ITLB_INDXH       `OR1200_IMMU_PS+`OR1200_ITLB_INDXW-1    // 18                   19
1208
`define OR1200_ITLB_INDX        `OR1200_ITLB_INDXH:`OR1200_ITLB_INDXL   // 18:13                19:13
1209
`define OR1200_ITLB_TAGW        32-`OR1200_ITLB_INDXW-`OR1200_IMMU_PS   // 13                   12
1210
`define OR1200_ITLB_TAGL        `OR1200_ITLB_INDXH+1                    // 19                   20
1211
`define OR1200_ITLB_TAG         31:`OR1200_ITLB_TAGL                    // 31:19                31:20
1212
`define OR1200_ITLBMRW          `OR1200_ITLB_TAGW+1                     // +1 because of V bit
1213
`define OR1200_ITLBTRW          32-`OR1200_IMMU_PS+3                    // +3 because of protection bits and CI
1214
 
1215
//
1216
// Cache inhibit while IMMU is not enabled/implemented
1217
// Note: all combinations that use icpu_adr_i cause async loop
1218
//
1219
// cache inhibited 0GB-4GB              1'b1
1220
// cache inhibited 0GB-2GB              !icpu_adr_i[31]
1221
// cache inhibited 0GB-1GB 2GB-3GB      !icpu_adr_i[30]
1222
// cache inhibited 1GB-2GB 3GB-4GB      icpu_adr_i[30]
1223
// cache inhibited 2GB-4GB (default)    icpu_adr_i[31]
1224
// cached 0GB-4GB                       1'b0
1225
//
1226
`define OR1200_IMMU_CI                  1'b0
1227
 
1228
 
1229
/////////////////////////////////////////////////
1230
//
1231
// Insn cache (IC)
1232
//
1233
 
1234
// 4 for 16 byte line, 5 for 32 byte lines.
1235
`ifdef OR1200_IC_1W_32KB
1236
 `define OR1200_ICLS            5
1237
`else
1238
 `define OR1200_ICLS            4
1239
`endif
1240
 
1241
//
1242
// IC configurations
1243
//
1244
`ifdef OR1200_IC_1W_512B
1245
`define OR1200_ICSIZE                   9                       // 512
1246
`define OR1200_ICINDX                   `OR1200_ICSIZE-2        // 7
1247
`define OR1200_ICINDXH                  `OR1200_ICSIZE-1        // 8
1248
`define OR1200_ICTAGL                   `OR1200_ICINDXH+1       // 9
1249
`define OR1200_ICTAG                    `OR1200_ICSIZE-`OR1200_ICLS // 5
1250
`define OR1200_ICTAG_W                  24
1251
`endif
1252
`ifdef OR1200_IC_1W_4KB
1253
`define OR1200_ICSIZE                   12                      // 4096
1254
`define OR1200_ICINDX                   `OR1200_ICSIZE-2        // 10
1255
`define OR1200_ICINDXH                  `OR1200_ICSIZE-1        // 11
1256
`define OR1200_ICTAGL                   `OR1200_ICINDXH+1       // 12
1257
`define OR1200_ICTAG                    `OR1200_ICSIZE-`OR1200_ICLS     // 8
1258
`define OR1200_ICTAG_W                  21
1259
`endif
1260
`ifdef OR1200_IC_1W_8KB
1261
`define OR1200_ICSIZE                   13                      // 8192
1262
`define OR1200_ICINDX                   `OR1200_ICSIZE-2        // 11
1263
`define OR1200_ICINDXH                  `OR1200_ICSIZE-1        // 12
1264
`define OR1200_ICTAGL                   `OR1200_ICINDXH+1       // 13
1265
`define OR1200_ICTAG                    `OR1200_ICSIZE-`OR1200_ICLS     // 9
1266
`define OR1200_ICTAG_W                  20
1267
`endif
1268
`ifdef OR1200_IC_1W_16KB
1269
`define OR1200_ICSIZE                   14                      // 16384
1270
`define OR1200_ICINDX                   `OR1200_ICSIZE-2        // 12
1271
`define OR1200_ICINDXH                  `OR1200_ICSIZE-1        // 13
1272
`define OR1200_ICTAGL                   `OR1200_ICINDXH+1       // 14
1273
`define OR1200_ICTAG                    `OR1200_ICSIZE-`OR1200_ICLS     // 10
1274
`define OR1200_ICTAG_W                  19
1275
`endif
1276
`ifdef OR1200_IC_1W_32KB
1277
`define OR1200_ICSIZE                   15                      // 32768
1278
`define OR1200_ICINDX                   `OR1200_ICSIZE-2        // 13
1279
`define OR1200_ICINDXH                  `OR1200_ICSIZE-1        // 14
1280
`define OR1200_ICTAGL                   `OR1200_ICINDXH+1       // 14
1281
`define OR1200_ICTAG                    `OR1200_ICSIZE-`OR1200_ICLS     // 10
1282
`define OR1200_ICTAG_W                  18
1283
`endif
1284
 
1285
 
1286
/////////////////////////////////////////////////
1287
//
1288
// Data cache (DC)
1289
//
1290
 
1291
// 4 for 16 bytes, 5 for 32 bytes
1292
`ifdef OR1200_DC_1W_32KB
1293
 `define OR1200_DCLS            5
1294
`else
1295
 `define OR1200_DCLS            4
1296
`endif
1297
 
1298
// Define to enable default behavior of cache as write through
1299
// Turning this off enabled write back statergy
1300
//
1301
`define OR1200_DC_WRITETHROUGH
1302
 
1303
// Define to enable stores from the stack not doing writethrough.
1304
// EXPERIMENTAL
1305
//`define OR1200_DC_NOSTACKWRITETHROUGH
1306
 
1307
// Data cache SPR definitions
1308
`define OR1200_SPRGRP_DC_ADR_WIDTH 3
1309
// Data cache group SPR addresses
1310
`define OR1200_SPRGRP_DC_DCCR           3'd0 // Not implemented
1311
`define OR1200_SPRGRP_DC_DCBPR          3'd1 // Not implemented
1312
`define OR1200_SPRGRP_DC_DCBFR          3'd2
1313
`define OR1200_SPRGRP_DC_DCBIR          3'd3
1314
`define OR1200_SPRGRP_DC_DCBWR          3'd4 // Not implemented
1315
`define OR1200_SPRGRP_DC_DCBLR          3'd5 // Not implemented
1316
 
1317
//
1318
// DC configurations
1319
//
1320
`ifdef OR1200_DC_1W_4KB
1321
`define OR1200_DCSIZE                   12                      // 4096
1322
`define OR1200_DCINDX                   `OR1200_DCSIZE-2        // 10
1323
`define OR1200_DCINDXH                  `OR1200_DCSIZE-1        // 11
1324
`define OR1200_DCTAGL                   `OR1200_DCINDXH+1       // 12
1325
`define OR1200_DCTAG                    `OR1200_DCSIZE-`OR1200_DCLS     // 8
1326
`define OR1200_DCTAG_W                  21
1327
`endif
1328
`ifdef OR1200_DC_1W_8KB
1329
`define OR1200_DCSIZE                   13                      // 8192
1330
`define OR1200_DCINDX                   `OR1200_DCSIZE-2        // 11
1331
`define OR1200_DCINDXH                  `OR1200_DCSIZE-1        // 12
1332
`define OR1200_DCTAGL                   `OR1200_DCINDXH+1       // 13
1333
`define OR1200_DCTAG                    `OR1200_DCSIZE-`OR1200_DCLS     // 9
1334
`define OR1200_DCTAG_W                  20
1335
`endif
1336
`ifdef OR1200_DC_1W_16KB
1337
`define OR1200_DCSIZE                   14                      // 16384
1338
`define OR1200_DCINDX                   `OR1200_DCSIZE-2        // 12
1339
`define OR1200_DCINDXH                  `OR1200_DCSIZE-1        // 13
1340
`define OR1200_DCTAGL                   `OR1200_DCINDXH+1       // 14
1341
`define OR1200_DCTAG                    `OR1200_DCSIZE-`OR1200_DCLS     // 10
1342
`define OR1200_DCTAG_W                  19
1343
`endif
1344
`ifdef OR1200_DC_1W_32KB
1345
`define OR1200_DCSIZE                   15                      // 32768
1346
`define OR1200_DCINDX                   `OR1200_DCSIZE-2        // 13
1347
`define OR1200_DCINDXH                  `OR1200_DCSIZE-1        // 14
1348
`define OR1200_DCTAGL                   `OR1200_DCINDXH+1       // 15
1349
`define OR1200_DCTAG                    `OR1200_DCSIZE-`OR1200_DCLS     // 10
1350
`define OR1200_DCTAG_W                  18
1351
`endif
1352
 
1353
 
1354
/////////////////////////////////////////////////
1355
//
1356
// Store buffer (SB)
1357
//
1358
 
1359
//
1360
// Store buffer
1361
//
1362
// It will improve performance by "caching" CPU stores
1363
// using store buffer. This is most important for function
1364
// prologues because DC can only work in write though mode
1365
// and all stores would have to complete external WB writes
1366
// to memory.
1367
// Store buffer is between DC and data BIU.
1368
// All stores will be stored into store buffer and immediately
1369
// completed by the CPU, even though actual external writes
1370
// will be performed later. As a consequence store buffer masks
1371
// all data bus errors related to stores (data bus errors
1372
// related to loads are delivered normally).
1373
// All pending CPU loads will wait until store buffer is empty to
1374
// ensure strict memory model. Right now this is necessary because
1375
// we don't make destinction between cached and cache inhibited
1376
// address space, so we simply empty store buffer until loads
1377
// can begin.
1378
//
1379
// It makes design a bit bigger, depending what is the number of
1380
// entries in SB FIFO. Number of entries can be changed further
1381
// down.
1382
//
1383
//`define OR1200_SB_IMPLEMENTED
1384
 
1385
//
1386
// Number of store buffer entries
1387
//
1388
// Verified number of entries are 4 and 8 entries
1389
// (2 and 3 for OR1200_SB_LOG). OR1200_SB_ENTRIES must
1390
// always match 2**OR1200_SB_LOG.
1391
// To disable store buffer, undefine
1392
// OR1200_SB_IMPLEMENTED.
1393
//
1394
`define OR1200_SB_LOG           2       // 2 or 3
1395
`define OR1200_SB_ENTRIES       4       // 4 or 8
1396
 
1397
 
1398
/////////////////////////////////////////////////
1399
//
1400
// Quick Embedded Memory (QMEM)
1401
//
1402
 
1403
//
1404
// Quick Embedded Memory
1405
//
1406
// Instantiation of dedicated insn/data memory (RAM or ROM).
1407
// Insn fetch has effective throughput 1insn / clock cycle.
1408
// Data load takes two clock cycles / access, data store
1409
// takes 1 clock cycle / access (if there is no insn fetch)).
1410
// Memory instantiation is shared between insn and data,
1411
// meaning if insn fetch are performed, data load/store
1412
// performance will be lower.
1413
//
1414
// Main reason for QMEM is to put some time critical functions
1415
// into this memory and to have predictable and fast access
1416
// to these functions. (soft fpu, context switch, exception
1417
// handlers, stack, etc)
1418
//
1419
// It makes design a bit bigger and slower. QMEM sits behind
1420
// IMMU/DMMU so all addresses are physical (so the MMUs can be
1421
// used with QMEM and QMEM is seen by the CPU just like any other
1422
// memory in the system). IC/DC are sitting behind QMEM so the
1423
// whole design timing might be worse with QMEM implemented.
1424
//
1425
//`define OR1200_QMEM_IMPLEMENTED
1426
 
1427
//
1428
// Base address and mask of QMEM
1429
//
1430
// Base address defines first address of QMEM. Mask defines
1431
// QMEM range in address space. Actual size of QMEM is however
1432
// determined with instantiated RAM/ROM. However bigger
1433
// mask will reserve more address space for QMEM, but also
1434
// make design faster, while more tight mask will take
1435
// less address space but also make design slower. If
1436
// instantiated RAM/ROM is smaller than space reserved with
1437
// the mask, instatiated RAM/ROM will also be shadowed
1438
// at higher addresses in reserved space.
1439
//
1440
`define OR1200_QMEM_IADDR       32'h0080_0000
1441
`define OR1200_QMEM_IMASK       32'hfff0_0000 // Max QMEM size 1MB
1442
`define OR1200_QMEM_DADDR       32'h0080_0000
1443
`define OR1200_QMEM_DMASK       32'hfff0_0000 // Max QMEM size 1MB
1444
 
1445
//
1446
// QMEM interface byte-select capability
1447
//
1448
// To enable qmem_sel* ports, define this macro.
1449
//
1450
//`define OR1200_QMEM_BSEL
1451
 
1452
//
1453
// QMEM interface acknowledge
1454
//
1455
// To enable qmem_ack port, define this macro.
1456
//
1457
//`define OR1200_QMEM_ACK
1458
 
1459
/////////////////////////////////////////////////////
1460
//
1461
// VR, UPR and Configuration Registers
1462
//
1463
//
1464
// VR, UPR and configuration registers are optional. If 
1465
// implemented, operating system can automatically figure
1466
// out how to use the processor because it knows 
1467
// what units are available in the processor and how they
1468
// are configured.
1469
//
1470
// This section must be last in or1200_defines.v file so
1471
// that all units are already configured and thus
1472
// configuration registers are properly set.
1473
// 
1474
 
1475
// Define if you want configuration registers implemented
1476
`define OR1200_CFGR_IMPLEMENTED
1477
 
1478
// Define if you want full address decode inside SYS group
1479
`define OR1200_SYS_FULL_DECODE
1480
 
1481
// Offsets of VR, UPR and CFGR registers
1482
`define OR1200_SPRGRP_SYS_VR            4'h0
1483
`define OR1200_SPRGRP_SYS_UPR           4'h1
1484
`define OR1200_SPRGRP_SYS_CPUCFGR       4'h2
1485
`define OR1200_SPRGRP_SYS_DMMUCFGR      4'h3
1486
`define OR1200_SPRGRP_SYS_IMMUCFGR      4'h4
1487
`define OR1200_SPRGRP_SYS_DCCFGR        4'h5
1488
`define OR1200_SPRGRP_SYS_ICCFGR        4'h6
1489
`define OR1200_SPRGRP_SYS_DCFGR 4'h7
1490
 
1491
// VR fields
1492
`define OR1200_VR_REV_BITS              5:0
1493
`define OR1200_VR_RES1_BITS             15:6
1494
`define OR1200_VR_CFG_BITS              23:16
1495
`define OR1200_VR_VER_BITS              31:24
1496
 
1497
// VR values
1498
`define OR1200_VR_REV                   6'h08
1499
`define OR1200_VR_RES1                  10'h000
1500
`define OR1200_VR_CFG                   8'h00
1501
`define OR1200_VR_VER                   8'h12
1502
 
1503
// UPR fields
1504
`define OR1200_UPR_UP_BITS              0
1505
`define OR1200_UPR_DCP_BITS             1
1506
`define OR1200_UPR_ICP_BITS             2
1507
`define OR1200_UPR_DMP_BITS             3
1508
`define OR1200_UPR_IMP_BITS             4
1509
`define OR1200_UPR_MP_BITS              5
1510
`define OR1200_UPR_DUP_BITS             6
1511
`define OR1200_UPR_PCUP_BITS            7
1512
`define OR1200_UPR_PMP_BITS             8
1513
`define OR1200_UPR_PICP_BITS            9
1514
`define OR1200_UPR_TTP_BITS             10
1515
`define OR1200_UPR_FPP_BITS             11
1516
`define OR1200_UPR_RES1_BITS            23:12
1517
`define OR1200_UPR_CUP_BITS             31:24
1518
 
1519
// UPR values
1520
`define OR1200_UPR_UP                   1'b1
1521
`ifdef OR1200_NO_DC
1522
`define OR1200_UPR_DCP                  1'b0
1523
`else
1524
`define OR1200_UPR_DCP                  1'b1
1525
`endif
1526
`ifdef OR1200_NO_IC
1527
`define OR1200_UPR_ICP                  1'b0
1528
`else
1529
`define OR1200_UPR_ICP                  1'b1
1530
`endif
1531
`ifdef OR1200_NO_DMMU
1532
`define OR1200_UPR_DMP                  1'b0
1533
`else
1534
`define OR1200_UPR_DMP                  1'b1
1535
`endif
1536
`ifdef OR1200_NO_IMMU
1537
`define OR1200_UPR_IMP                  1'b0
1538
`else
1539
`define OR1200_UPR_IMP                  1'b1
1540
`endif
1541
`ifdef OR1200_MAC_IMPLEMENTED
1542
`define OR1200_UPR_MP                   1'b1
1543
`else
1544
`define OR1200_UPR_MP                   1'b0
1545
`endif
1546
`ifdef OR1200_DU_IMPLEMENTED
1547
`define OR1200_UPR_DUP                  1'b1
1548
`else
1549
`define OR1200_UPR_DUP                  1'b0
1550
`endif
1551
`define OR1200_UPR_PCUP                 1'b0    // Performance counters not present
1552
`ifdef OR1200_PM_IMPLEMENTED
1553
`define OR1200_UPR_PMP                  1'b1
1554
`else
1555
`define OR1200_UPR_PMP                  1'b0
1556
`endif
1557
`ifdef OR1200_PIC_IMPLEMENTED
1558
`define OR1200_UPR_PICP                 1'b1
1559
`else
1560
`define OR1200_UPR_PICP                 1'b0
1561
`endif
1562
`ifdef OR1200_TT_IMPLEMENTED
1563
`define OR1200_UPR_TTP                  1'b1
1564
`else
1565
`define OR1200_UPR_TTP                  1'b0
1566
`endif
1567
`ifdef OR1200_FPU_IMPLEMENTED
1568
`define OR1200_UPR_FPP                  1'b1
1569
`else
1570
`define OR1200_UPR_FPP                  1'b0
1571
`endif
1572
`define OR1200_UPR_RES1                 12'h000
1573
`define OR1200_UPR_CUP                  8'h00
1574
 
1575
// CPUCFGR fields
1576
`define OR1200_CPUCFGR_NSGF_BITS        3:0
1577
`define OR1200_CPUCFGR_HGF_BITS     4
1578
`define OR1200_CPUCFGR_OB32S_BITS       5
1579
`define OR1200_CPUCFGR_OB64S_BITS       6
1580
`define OR1200_CPUCFGR_OF32S_BITS       7
1581
`define OR1200_CPUCFGR_OF64S_BITS       8
1582
`define OR1200_CPUCFGR_OV64S_BITS       9
1583
`define OR1200_CPUCFGR_RES1_BITS        31:10
1584
 
1585
// CPUCFGR values
1586
`define OR1200_CPUCFGR_NSGF                 4'h0
1587
`ifdef OR1200_RFRAM_16REG
1588
    `define OR1200_CPUCFGR_HGF                  1'b1
1589
`else
1590
    `define OR1200_CPUCFGR_HGF                  1'b0
1591
`endif
1592
`define OR1200_CPUCFGR_OB32S            1'b1
1593
`define OR1200_CPUCFGR_OB64S            1'b0
1594
`ifdef OR1200_FPU_IMPLEMENTED
1595
 `define OR1200_CPUCFGR_OF32S           1'b1
1596
`else
1597
 `define OR1200_CPUCFGR_OF32S           1'b0
1598
`endif
1599
 
1600
`define OR1200_CPUCFGR_OF64S            1'b0
1601
`define OR1200_CPUCFGR_OV64S            1'b0
1602
`define OR1200_CPUCFGR_RES1             22'h000000
1603
 
1604
// DMMUCFGR fields
1605
`define OR1200_DMMUCFGR_NTW_BITS        1:0
1606
`define OR1200_DMMUCFGR_NTS_BITS        4:2
1607
`define OR1200_DMMUCFGR_NAE_BITS        7:5
1608
`define OR1200_DMMUCFGR_CRI_BITS        8
1609
`define OR1200_DMMUCFGR_PRI_BITS        9
1610
`define OR1200_DMMUCFGR_TEIRI_BITS      10
1611
`define OR1200_DMMUCFGR_HTR_BITS        11
1612
`define OR1200_DMMUCFGR_RES1_BITS       31:12
1613
 
1614
// DMMUCFGR values
1615
`ifdef OR1200_NO_DMMU
1616
`define OR1200_DMMUCFGR_NTW             2'h0    // Irrelevant
1617
`define OR1200_DMMUCFGR_NTS             3'h0    // Irrelevant
1618
`define OR1200_DMMUCFGR_NAE             3'h0    // Irrelevant
1619
`define OR1200_DMMUCFGR_CRI             1'b0    // Irrelevant
1620
`define OR1200_DMMUCFGR_PRI             1'b0    // Irrelevant
1621
`define OR1200_DMMUCFGR_TEIRI           1'b0    // Irrelevant
1622
`define OR1200_DMMUCFGR_HTR             1'b0    // Irrelevant
1623
`define OR1200_DMMUCFGR_RES1            20'h00000
1624
`else
1625
`define OR1200_DMMUCFGR_NTW             2'h0    // 1 TLB way
1626
`define OR1200_DMMUCFGR_NTS 3'h`OR1200_DTLB_INDXW       // Num TLB sets
1627
`define OR1200_DMMUCFGR_NAE             3'h0    // No ATB entries
1628
`define OR1200_DMMUCFGR_CRI             1'b0    // No control register
1629
`define OR1200_DMMUCFGR_PRI             1'b0    // No protection reg
1630
`define OR1200_DMMUCFGR_TEIRI           1'b1    // TLB entry inv reg impl.
1631
`define OR1200_DMMUCFGR_HTR             1'b0    // No HW TLB reload
1632
`define OR1200_DMMUCFGR_RES1            20'h00000
1633
`endif
1634
 
1635
// IMMUCFGR fields
1636
`define OR1200_IMMUCFGR_NTW_BITS        1:0
1637
`define OR1200_IMMUCFGR_NTS_BITS        4:2
1638
`define OR1200_IMMUCFGR_NAE_BITS        7:5
1639
`define OR1200_IMMUCFGR_CRI_BITS        8
1640
`define OR1200_IMMUCFGR_PRI_BITS        9
1641
`define OR1200_IMMUCFGR_TEIRI_BITS      10
1642
`define OR1200_IMMUCFGR_HTR_BITS        11
1643
`define OR1200_IMMUCFGR_RES1_BITS       31:12
1644
 
1645
// IMMUCFGR values
1646
`ifdef OR1200_NO_IMMU
1647
`define OR1200_IMMUCFGR_NTW             2'h0    // Irrelevant
1648
`define OR1200_IMMUCFGR_NTS             3'h0    // Irrelevant
1649
`define OR1200_IMMUCFGR_NAE             3'h0    // Irrelevant
1650
`define OR1200_IMMUCFGR_CRI             1'b0    // Irrelevant
1651
`define OR1200_IMMUCFGR_PRI             1'b0    // Irrelevant
1652
`define OR1200_IMMUCFGR_TEIRI           1'b0    // Irrelevant
1653
`define OR1200_IMMUCFGR_HTR             1'b0    // Irrelevant
1654
`define OR1200_IMMUCFGR_RES1            20'h00000
1655
`else
1656
`define OR1200_IMMUCFGR_NTW             2'h0    // 1 TLB way
1657
`define OR1200_IMMUCFGR_NTS 3'h`OR1200_ITLB_INDXW       // Num TLB sets
1658
`define OR1200_IMMUCFGR_NAE             3'h0    // No ATB entry
1659
`define OR1200_IMMUCFGR_CRI             1'b0    // No control reg
1660
`define OR1200_IMMUCFGR_PRI             1'b0    // No protection reg
1661
`define OR1200_IMMUCFGR_TEIRI           1'b1    // TLB entry inv reg impl
1662
`define OR1200_IMMUCFGR_HTR             1'b0    // No HW TLB reload
1663
`define OR1200_IMMUCFGR_RES1            20'h00000
1664
`endif
1665
 
1666
// DCCFGR fields
1667
`define OR1200_DCCFGR_NCW_BITS          2:0
1668
`define OR1200_DCCFGR_NCS_BITS          6:3
1669
`define OR1200_DCCFGR_CBS_BITS          7
1670
`define OR1200_DCCFGR_CWS_BITS          8
1671
`define OR1200_DCCFGR_CCRI_BITS         9
1672
`define OR1200_DCCFGR_CBIRI_BITS        10
1673
`define OR1200_DCCFGR_CBPRI_BITS        11
1674
`define OR1200_DCCFGR_CBLRI_BITS        12
1675
`define OR1200_DCCFGR_CBFRI_BITS        13
1676
`define OR1200_DCCFGR_CBWBRI_BITS       14
1677
`define OR1200_DCCFGR_RES1_BITS 31:15
1678
 
1679
// DCCFGR values
1680
`ifdef OR1200_NO_DC
1681
`define OR1200_DCCFGR_NCW               3'h0    // Irrelevant
1682
`define OR1200_DCCFGR_NCS               4'h0    // Irrelevant
1683
`define OR1200_DCCFGR_CBS               1'b0    // Irrelevant
1684
`define OR1200_DCCFGR_CWS               1'b0    // Irrelevant
1685
`define OR1200_DCCFGR_CCRI              1'b0    // Irrelevant
1686
`define OR1200_DCCFGR_CBIRI             1'b0    // Irrelevant
1687
`define OR1200_DCCFGR_CBPRI             1'b0    // Irrelevant
1688
`define OR1200_DCCFGR_CBLRI             1'b0    // Irrelevant
1689
`define OR1200_DCCFGR_CBFRI             1'b0    // Irrelevant
1690
`define OR1200_DCCFGR_CBWBRI            1'b0    // Irrelevant
1691
`define OR1200_DCCFGR_RES1              17'h00000
1692
`else
1693
`define OR1200_DCCFGR_NCW               3'h0    // 1 cache way
1694
`define OR1200_DCCFGR_NCS (`OR1200_DCTAG)       // Num cache sets
1695
`define OR1200_DCCFGR_CBS `OR1200_DCLS==4 ? 1'b0 : 1'b1 // 16 byte cache block
1696
`ifdef OR1200_DC_WRITETHROUGH
1697
 `define OR1200_DCCFGR_CWS              1'b0    // Write-through strategy
1698
`else
1699
 `define OR1200_DCCFGR_CWS              1'b1    // Write-back strategy
1700
`endif
1701
`define OR1200_DCCFGR_CCRI              1'b1    // Cache control reg impl.
1702
`define OR1200_DCCFGR_CBIRI             1'b1    // Cache block inv reg impl.
1703
`define OR1200_DCCFGR_CBPRI             1'b0    // Cache block prefetch reg not impl.
1704
`define OR1200_DCCFGR_CBLRI             1'b0    // Cache block lock reg not impl.
1705
`define OR1200_DCCFGR_CBFRI             1'b1    // Cache block flush reg impl.
1706
`ifdef OR1200_DC_WRITETHROUGH
1707
 `define OR1200_DCCFGR_CBWBRI           1'b0    // Cache block WB reg not impl.
1708
`else
1709
 `define OR1200_DCCFGR_CBWBRI           1'b1    // Cache block WB reg impl.
1710
`endif
1711
`define OR1200_DCCFGR_RES1              17'h00000
1712
`endif
1713
 
1714
// ICCFGR fields
1715
`define OR1200_ICCFGR_NCW_BITS          2:0
1716
`define OR1200_ICCFGR_NCS_BITS          6:3
1717
`define OR1200_ICCFGR_CBS_BITS          7
1718
`define OR1200_ICCFGR_CWS_BITS          8
1719
`define OR1200_ICCFGR_CCRI_BITS         9
1720
`define OR1200_ICCFGR_CBIRI_BITS        10
1721
`define OR1200_ICCFGR_CBPRI_BITS        11
1722
`define OR1200_ICCFGR_CBLRI_BITS        12
1723
`define OR1200_ICCFGR_CBFRI_BITS        13
1724
`define OR1200_ICCFGR_CBWBRI_BITS       14
1725
`define OR1200_ICCFGR_RES1_BITS 31:15
1726
 
1727
// ICCFGR values
1728
`ifdef OR1200_NO_IC
1729
`define OR1200_ICCFGR_NCW               3'h0    // Irrelevant
1730
`define OR1200_ICCFGR_NCS               4'h0    // Irrelevant
1731
`define OR1200_ICCFGR_CBS               1'b0    // Irrelevant
1732
`define OR1200_ICCFGR_CWS               1'b0    // Irrelevant
1733
`define OR1200_ICCFGR_CCRI              1'b0    // Irrelevant
1734
`define OR1200_ICCFGR_CBIRI             1'b0    // Irrelevant
1735
`define OR1200_ICCFGR_CBPRI             1'b0    // Irrelevant
1736
`define OR1200_ICCFGR_CBLRI             1'b0    // Irrelevant
1737
`define OR1200_ICCFGR_CBFRI             1'b0    // Irrelevant
1738
`define OR1200_ICCFGR_CBWBRI            1'b0    // Irrelevant
1739
`define OR1200_ICCFGR_RES1              17'h00000
1740
`else
1741
`define OR1200_ICCFGR_NCW               3'h0    // 1 cache way
1742
`define OR1200_ICCFGR_NCS (`OR1200_ICTAG)       // Num cache sets
1743
`define OR1200_ICCFGR_CBS `OR1200_ICLS==4 ? 1'b0: 1'b1  // 16 byte cache block
1744
`define OR1200_ICCFGR_CWS               1'b0    // Irrelevant
1745
`define OR1200_ICCFGR_CCRI              1'b1    // Cache control reg impl.
1746
`define OR1200_ICCFGR_CBIRI             1'b1    // Cache block inv reg impl.
1747
`define OR1200_ICCFGR_CBPRI             1'b0    // Cache block prefetch reg not impl.
1748
`define OR1200_ICCFGR_CBLRI             1'b0    // Cache block lock reg not impl.
1749
`define OR1200_ICCFGR_CBFRI             1'b1    // Cache block flush reg impl.
1750
`define OR1200_ICCFGR_CBWBRI            1'b0    // Irrelevant
1751
`define OR1200_ICCFGR_RES1              17'h00000
1752
`endif
1753
 
1754
// DCFGR fields
1755
`define OR1200_DCFGR_NDP_BITS           3:0
1756
`define OR1200_DCFGR_WPCI_BITS          4
1757
`define OR1200_DCFGR_RES1_BITS          31:5
1758
 
1759
// DCFGR values
1760
`ifdef OR1200_DU_HWBKPTS
1761
`define OR1200_DCFGR_NDP                4'h`OR1200_DU_DVRDCR_PAIRS // # of DVR/DCR pairs
1762
`ifdef OR1200_DU_DWCR0
1763
`define OR1200_DCFGR_WPCI               1'b1
1764
`else
1765
`define OR1200_DCFGR_WPCI               1'b0    // WP counters not impl.
1766
`endif
1767
`else
1768
`define OR1200_DCFGR_NDP                4'h0    // Zero DVR/DCR pairs
1769
`define OR1200_DCFGR_WPCI               1'b0    // WP counters not impl.
1770
`endif
1771
`define OR1200_DCFGR_RES1               27'd0
1772
 
1773
///////////////////////////////////////////////////////////////////////////////
1774
// Boot Address Selection                                                    //
1775
//                                                                           //
1776
// Allows a definable boot address, potentially different to the usual reset //
1777
// vector to allow for power-on code to be run, if desired.                  //
1778
//                                                                           //
1779
// OR1200_BOOT_ADR should be the 32-bit address of the boot location         //
1780
// OR1200_BOOT_PCREG_DEFAULT should be ((OR1200_BOOT_ADR-4)>>2)              //
1781
//                                                                           //
1782
// For default reset behavior uncomment the settings under the "Boot 0x100"  //
1783
// comment below.                                                            //
1784
//                                                                           //
1785
///////////////////////////////////////////////////////////////////////////////
1786
// Boot from 0xf0000100
1787
//`define OR1200_BOOT_PCREG_DEFAULT 30'h3c00003f
1788
//`define OR1200_BOOT_ADR 32'hf0000100
1789
// Boot from 0x100
1790
 `define OR1200_BOOT_PCREG_DEFAULT 30'h0000003f
1791
 `define OR1200_BOOT_ADR 32'h00000100

powered by: WebSVN 2.1.0

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