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

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

[/] [an-fpga-implementation-of-low-latency-noc-based-mpsoc/] [trunk/] [mpsoc/] [src_processor/] [or1200/] [verilog/] [src/] [or1200_cfgr.v] - Blame information for rev 38

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 38 alirezamon
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  OR1200's VR, UPR and Configuration Registers                ////
4
////                                                              ////
5
////  This file is part of the OpenRISC 1200 project              ////
6
////  http://www.opencores.org/project,or1k                       ////
7
////                                                              ////
8
////  Description                                                 ////
9
////  According to OR1K architectural and OR1200 specifications.  ////
10
////                                                              ////
11
////  To Do:                                                      ////
12
////   - done                                                     ////
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
//
45
// $Log: or1200_cfgr.v,v $
46
// Revision 2.0  2010/06/30 11:00:00  ORSoC
47
// No update 
48
 
49
// synopsys translate_off
50
`include "timescale.v"
51
// synopsys translate_on
52
`include "or1200_defines.v"
53
 
54
module or1200_cfgr(
55
                   // RISC Internal Interface
56
                   spr_addr, spr_dat_o
57
                   );
58
 
59
   //
60
   // RISC Internal Interface
61
   //
62
   input        [31:0]   spr_addr;       // SPR Address
63
   output [31:0]         spr_dat_o;      // SPR Read Data
64
 
65
   //
66
   // Internal wires & registers
67
   //
68
   reg [31:0]            spr_dat_o;      // SPR Read Data
69
 
70
`ifdef OR1200_CFGR_IMPLEMENTED
71
 
72
   //
73
   // Implementation of VR, UPR and configuration registers
74
   //
75
   always @(spr_addr)
76
 `ifdef OR1200_SYS_FULL_DECODE
77
     if (~|spr_addr[31:4])
78
 `endif
79
       case(spr_addr[3:0])               // synopsys parallel_case
80
         `OR1200_SPRGRP_SYS_VR: begin
81
            spr_dat_o[`OR1200_VR_REV_BITS] = `OR1200_VR_REV;
82
            spr_dat_o[`OR1200_VR_RES1_BITS] = `OR1200_VR_RES1;
83
            spr_dat_o[`OR1200_VR_CFG_BITS] = `OR1200_VR_CFG;
84
            spr_dat_o[`OR1200_VR_VER_BITS] = `OR1200_VR_VER;
85
         end
86
         `OR1200_SPRGRP_SYS_UPR: begin
87
            spr_dat_o[`OR1200_UPR_UP_BITS] = `OR1200_UPR_UP;
88
            spr_dat_o[`OR1200_UPR_DCP_BITS] = `OR1200_UPR_DCP;
89
            spr_dat_o[`OR1200_UPR_ICP_BITS] = `OR1200_UPR_ICP;
90
            spr_dat_o[`OR1200_UPR_DMP_BITS] = `OR1200_UPR_DMP;
91
            spr_dat_o[`OR1200_UPR_IMP_BITS] = `OR1200_UPR_IMP;
92
            spr_dat_o[`OR1200_UPR_MP_BITS] = `OR1200_UPR_MP;
93
            spr_dat_o[`OR1200_UPR_DUP_BITS] = `OR1200_UPR_DUP;
94
            spr_dat_o[`OR1200_UPR_PCUP_BITS] = `OR1200_UPR_PCUP;
95
            spr_dat_o[`OR1200_UPR_PMP_BITS] = `OR1200_UPR_PMP;
96
            spr_dat_o[`OR1200_UPR_PICP_BITS] = `OR1200_UPR_PICP;
97
            spr_dat_o[`OR1200_UPR_TTP_BITS] = `OR1200_UPR_TTP;
98
            spr_dat_o[`OR1200_UPR_FPP_BITS] = `OR1200_UPR_FPP;
99
            spr_dat_o[`OR1200_UPR_RES1_BITS] = `OR1200_UPR_RES1;
100
            spr_dat_o[`OR1200_UPR_CUP_BITS] = `OR1200_UPR_CUP;
101
         end
102
         `OR1200_SPRGRP_SYS_CPUCFGR: begin
103
            spr_dat_o[`OR1200_CPUCFGR_NSGF_BITS] = `OR1200_CPUCFGR_NSGF;
104
            spr_dat_o[`OR1200_CPUCFGR_HGF_BITS] = `OR1200_CPUCFGR_HGF;
105
            spr_dat_o[`OR1200_CPUCFGR_OB32S_BITS] = `OR1200_CPUCFGR_OB32S;
106
            spr_dat_o[`OR1200_CPUCFGR_OB64S_BITS] = `OR1200_CPUCFGR_OB64S;
107
            spr_dat_o[`OR1200_CPUCFGR_OF32S_BITS] = `OR1200_CPUCFGR_OF32S;
108
            spr_dat_o[`OR1200_CPUCFGR_OF64S_BITS] = `OR1200_CPUCFGR_OF64S;
109
            spr_dat_o[`OR1200_CPUCFGR_OV64S_BITS] = `OR1200_CPUCFGR_OV64S;
110
            spr_dat_o[`OR1200_CPUCFGR_RES1_BITS] = `OR1200_CPUCFGR_RES1;
111
         end
112
         `OR1200_SPRGRP_SYS_DMMUCFGR: begin
113
            spr_dat_o[`OR1200_DMMUCFGR_NTW_BITS] = `OR1200_DMMUCFGR_NTW;
114
            spr_dat_o[`OR1200_DMMUCFGR_NTS_BITS] = `OR1200_DMMUCFGR_NTS;
115
            spr_dat_o[`OR1200_DMMUCFGR_NAE_BITS] = `OR1200_DMMUCFGR_NAE;
116
            spr_dat_o[`OR1200_DMMUCFGR_CRI_BITS] = `OR1200_DMMUCFGR_CRI;
117
            spr_dat_o[`OR1200_DMMUCFGR_PRI_BITS] = `OR1200_DMMUCFGR_PRI;
118
            spr_dat_o[`OR1200_DMMUCFGR_TEIRI_BITS] = `OR1200_DMMUCFGR_TEIRI;
119
            spr_dat_o[`OR1200_DMMUCFGR_HTR_BITS] = `OR1200_DMMUCFGR_HTR;
120
            spr_dat_o[`OR1200_DMMUCFGR_RES1_BITS] = `OR1200_DMMUCFGR_RES1;
121
         end
122
         `OR1200_SPRGRP_SYS_IMMUCFGR: begin
123
            spr_dat_o[`OR1200_IMMUCFGR_NTW_BITS] = `OR1200_IMMUCFGR_NTW;
124
            spr_dat_o[`OR1200_IMMUCFGR_NTS_BITS] = `OR1200_IMMUCFGR_NTS;
125
            spr_dat_o[`OR1200_IMMUCFGR_NAE_BITS] = `OR1200_IMMUCFGR_NAE;
126
            spr_dat_o[`OR1200_IMMUCFGR_CRI_BITS] = `OR1200_IMMUCFGR_CRI;
127
            spr_dat_o[`OR1200_IMMUCFGR_PRI_BITS] = `OR1200_IMMUCFGR_PRI;
128
            spr_dat_o[`OR1200_IMMUCFGR_TEIRI_BITS] = `OR1200_IMMUCFGR_TEIRI;
129
            spr_dat_o[`OR1200_IMMUCFGR_HTR_BITS] = `OR1200_IMMUCFGR_HTR;
130
            spr_dat_o[`OR1200_IMMUCFGR_RES1_BITS] = `OR1200_IMMUCFGR_RES1;
131
         end
132
         `OR1200_SPRGRP_SYS_DCCFGR: begin
133
            spr_dat_o[`OR1200_DCCFGR_NCW_BITS] = `OR1200_DCCFGR_NCW;
134
            spr_dat_o[`OR1200_DCCFGR_NCS_BITS] = `OR1200_DCCFGR_NCS;
135
            spr_dat_o[`OR1200_DCCFGR_CBS_BITS] = `OR1200_DCCFGR_CBS;
136
            spr_dat_o[`OR1200_DCCFGR_CWS_BITS] = `OR1200_DCCFGR_CWS;
137
            spr_dat_o[`OR1200_DCCFGR_CCRI_BITS] = `OR1200_DCCFGR_CCRI;
138
            spr_dat_o[`OR1200_DCCFGR_CBIRI_BITS] = `OR1200_DCCFGR_CBIRI;
139
            spr_dat_o[`OR1200_DCCFGR_CBPRI_BITS] = `OR1200_DCCFGR_CBPRI;
140
            spr_dat_o[`OR1200_DCCFGR_CBLRI_BITS] = `OR1200_DCCFGR_CBLRI;
141
            spr_dat_o[`OR1200_DCCFGR_CBFRI_BITS] = `OR1200_DCCFGR_CBFRI;
142
            spr_dat_o[`OR1200_DCCFGR_CBWBRI_BITS] = `OR1200_DCCFGR_CBWBRI;
143
            spr_dat_o[`OR1200_DCCFGR_RES1_BITS] = `OR1200_DCCFGR_RES1;
144
         end
145
         `OR1200_SPRGRP_SYS_ICCFGR: begin
146
            spr_dat_o[`OR1200_ICCFGR_NCW_BITS] = `OR1200_ICCFGR_NCW;
147
            spr_dat_o[`OR1200_ICCFGR_NCS_BITS] = `OR1200_ICCFGR_NCS;
148
            spr_dat_o[`OR1200_ICCFGR_CBS_BITS] = `OR1200_ICCFGR_CBS;
149
            spr_dat_o[`OR1200_ICCFGR_CWS_BITS] = `OR1200_ICCFGR_CWS;
150
            spr_dat_o[`OR1200_ICCFGR_CCRI_BITS] = `OR1200_ICCFGR_CCRI;
151
            spr_dat_o[`OR1200_ICCFGR_CBIRI_BITS] = `OR1200_ICCFGR_CBIRI;
152
            spr_dat_o[`OR1200_ICCFGR_CBPRI_BITS] = `OR1200_ICCFGR_CBPRI;
153
            spr_dat_o[`OR1200_ICCFGR_CBLRI_BITS] = `OR1200_ICCFGR_CBLRI;
154
            spr_dat_o[`OR1200_ICCFGR_CBFRI_BITS] = `OR1200_ICCFGR_CBFRI;
155
            spr_dat_o[`OR1200_ICCFGR_CBWBRI_BITS] = `OR1200_ICCFGR_CBWBRI;
156
            spr_dat_o[`OR1200_ICCFGR_RES1_BITS] = `OR1200_ICCFGR_RES1;
157
         end
158
         `OR1200_SPRGRP_SYS_DCFGR: begin
159
            spr_dat_o[`OR1200_DCFGR_NDP_BITS] = `OR1200_DCFGR_NDP;
160
            spr_dat_o[`OR1200_DCFGR_WPCI_BITS] = `OR1200_DCFGR_WPCI;
161
            spr_dat_o[`OR1200_DCFGR_RES1_BITS] = `OR1200_DCFGR_RES1;
162
         end
163
         default: spr_dat_o = 32'h0000_0000;
164
       endcase
165
 `ifdef OR1200_SYS_FULL_DECODE
166
     else
167
       spr_dat_o = 32'h0000_0000;
168
 `endif
169
 
170
`else
171
 
172
   //
173
   // When configuration registers are not implemented, only
174
   // implement VR and UPR
175
   //
176
   always @(spr_addr)
177
 `ifdef OR1200_SYS_FULL_DECODE
178
     if (spr_addr[31:4] == 28'h0)
179
 `endif
180
       case(spr_addr[3:0])
181
         `OR1200_SPRGRP_SYS_VR: begin
182
            spr_dat_o[`OR1200_VR_REV_BITS] = `OR1200_VR_REV;
183
            spr_dat_o[`OR1200_VR_RES1_BITS] = `OR1200_VR_RES1;
184
            spr_dat_o[`OR1200_VR_CFG_BITS] = `OR1200_VR_CFG;
185
            spr_dat_o[`OR1200_VR_VER_BITS] = `OR1200_VR_VER;
186
         end
187
         `OR1200_SPRGRP_SYS_UPR: begin
188
            spr_dat_o[`OR1200_UPR_UP_BITS] = `OR1200_UPR_UP;
189
            spr_dat_o[`OR1200_UPR_DCP_BITS] = `OR1200_UPR_DCP;
190
            spr_dat_o[`OR1200_UPR_ICP_BITS] = `OR1200_UPR_ICP;
191
            spr_dat_o[`OR1200_UPR_DMP_BITS] = `OR1200_UPR_DMP;
192
            spr_dat_o[`OR1200_UPR_IMP_BITS] = `OR1200_UPR_IMP;
193
            spr_dat_o[`OR1200_UPR_MP_BITS] = `OR1200_UPR_MP;
194
            spr_dat_o[`OR1200_UPR_DUP_BITS] = `OR1200_UPR_DUP;
195
            spr_dat_o[`OR1200_UPR_PCUP_BITS] = `OR1200_UPR_PCUP;
196
            spr_dat_o[`OR1200_UPR_PMP_BITS] = `OR1200_UPR_PMP;
197
            spr_dat_o[`OR1200_UPR_PICP_BITS] = `OR1200_UPR_PICP;
198
            spr_dat_o[`OR1200_UPR_TTP_BITS] = `OR1200_UPR_TTP;
199
            spr_dat_o[`OR1200_UPR_RES1_BITS] = `OR1200_UPR_RES1;
200
            spr_dat_o[`OR1200_UPR_CUP_BITS] = `OR1200_UPR_CUP;
201
         end
202
         default: spr_dat_o = 32'h0000_0000;
203
       endcase
204
 `ifdef OR1200_SYS_FULL_DECODE
205
     else
206
       spr_dat_o = 32'h0000_0000;
207
 `endif
208
 
209
`endif
210
 
211
endmodule

powered by: WebSVN 2.1.0

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