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

Subversion Repositories or1200_hp

[/] [or1200_hp/] [trunk/] [rtl/] [rtl_cm2/] [verilog/] [or1200_cfgr.v] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 tobil
//////////////////////////////////////////////////////////////////////
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/cores/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
// CVS Revision History
45
//
46
// $Log: not supported by cvs2svn $
47
// Revision 1.3  2002/03/29 15:16:54  lampret
48
// Some of the warnings fixed.
49
//
50
// Revision 1.2  2002/01/14 06:18:22  lampret
51
// Fixed mem2reg bug in FAST implementation. Updated debug unit to work with new genpc/if.
52
//
53
// Revision 1.1  2002/01/03 08:16:15  lampret
54
// New prefixes for RTL files, prefixed module names. Updated cache controllers and MMUs.
55
//
56
// Revision 1.7  2001/10/21 17:57:16  lampret
57
// Removed params from generic_XX.v. Added translate_off/on in sprs.v and id.v. Removed spr_addr from dc.v and ic.v. Fixed CR+LF.
58
//
59
// Revision 1.6  2001/10/14 13:12:09  lampret
60
// MP3 version.
61
//
62
// Revision 1.1.1.1  2001/10/06 10:18:35  igorm
63
// no message
64
//
65
// Revision 1.1  2001/08/09 13:39:33  lampret
66
// Major clean-up.
67
//
68
// Revision 1.1  2001/07/20 00:46:21  lampret
69
// Development version of RTL. Libraries are missing.
70
//
71
//
72
 
73
// synopsys translate_off
74
`include "timescale.v"
75
// synopsys translate_on
76
`include "or1200_defines.v"
77
 
78
module or1200_cfgr_cm2(
79
                clk_i_cml_1,
80
 
81
        // RISC Internal Interface
82
        spr_addr, spr_dat_o
83
);
84
 
85
 
86
input clk_i_cml_1;
87
reg [ 31 : 0 ] spr_addr_cml_1;
88
 
89
 
90
 
91
//
92
// RISC Internal Interface
93
//
94
input   [31:0]   spr_addr;       // SPR Address
95
output  [31:0]   spr_dat_o;      // SPR Read Data
96
 
97
//
98
// Internal wires & registers
99
//
100
reg     [31:0]   spr_dat_o;      // SPR Read Data
101
 
102
`ifdef OR1200_CFGR_IMPLEMENTED
103
 
104
//
105
// Implementation of VR, UPR and configuration registers
106
//
107
 
108
// SynEDA CoreMultiplier
109
// assignment(s): spr_dat_o
110
// replace(s): spr_addr
111
always @(spr_addr_cml_1)
112
`ifdef OR1200_SYS_FULL_DECODE
113
        if (~|spr_addr_cml_1[31:4])
114
`endif
115
                case(spr_addr_cml_1[3:0])                // synopsys parallel_case
116
                        `OR1200_SPRGRP_SYS_VR: begin
117
                                spr_dat_o[`OR1200_VR_REV_BITS] = `OR1200_VR_REV;
118
                                spr_dat_o[`OR1200_VR_RES1_BITS] = `OR1200_VR_RES1;
119
                                spr_dat_o[`OR1200_VR_CFG_BITS] = `OR1200_VR_CFG;
120
                                spr_dat_o[`OR1200_VR_VER_BITS] = `OR1200_VR_VER;
121
                        end
122
                        `OR1200_SPRGRP_SYS_UPR: begin
123
                                spr_dat_o[`OR1200_UPR_UP_BITS] = `OR1200_UPR_UP;
124
                                spr_dat_o[`OR1200_UPR_DCP_BITS] = `OR1200_UPR_DCP;
125
                                spr_dat_o[`OR1200_UPR_ICP_BITS] = `OR1200_UPR_ICP;
126
                                spr_dat_o[`OR1200_UPR_DMP_BITS] = `OR1200_UPR_DMP;
127
                                spr_dat_o[`OR1200_UPR_IMP_BITS] = `OR1200_UPR_IMP;
128
                                spr_dat_o[`OR1200_UPR_MP_BITS] = `OR1200_UPR_MP;
129
                                spr_dat_o[`OR1200_UPR_DUP_BITS] = `OR1200_UPR_DUP;
130
                                spr_dat_o[`OR1200_UPR_PCUP_BITS] = `OR1200_UPR_PCUP;
131
                                spr_dat_o[`OR1200_UPR_PMP_BITS] = `OR1200_UPR_PMP;
132
                                spr_dat_o[`OR1200_UPR_PICP_BITS] = `OR1200_UPR_PICP;
133
                                spr_dat_o[`OR1200_UPR_TTP_BITS] = `OR1200_UPR_TTP;
134
                                spr_dat_o[`OR1200_UPR_RES1_BITS] = `OR1200_UPR_RES1;
135
                                spr_dat_o[`OR1200_UPR_CUP_BITS] = `OR1200_UPR_CUP;
136
                        end
137
                        `OR1200_SPRGRP_SYS_CPUCFGR: begin
138
                                spr_dat_o[`OR1200_CPUCFGR_NSGF_BITS] = `OR1200_CPUCFGR_NSGF;
139
                                spr_dat_o[`OR1200_CPUCFGR_HGF_BITS] = `OR1200_CPUCFGR_HGF;
140
                                spr_dat_o[`OR1200_CPUCFGR_OB32S_BITS] = `OR1200_CPUCFGR_OB32S;
141
                                spr_dat_o[`OR1200_CPUCFGR_OB64S_BITS] = `OR1200_CPUCFGR_OB64S;
142
                                spr_dat_o[`OR1200_CPUCFGR_OF32S_BITS] = `OR1200_CPUCFGR_OF32S;
143
                                spr_dat_o[`OR1200_CPUCFGR_OF64S_BITS] = `OR1200_CPUCFGR_OF64S;
144
                                spr_dat_o[`OR1200_CPUCFGR_OV64S_BITS] = `OR1200_CPUCFGR_OV64S;
145
                                spr_dat_o[`OR1200_CPUCFGR_RES1_BITS] = `OR1200_CPUCFGR_RES1;
146
                        end
147
                        `OR1200_SPRGRP_SYS_DMMUCFGR: begin
148
                                spr_dat_o[`OR1200_DMMUCFGR_NTW_BITS] = `OR1200_DMMUCFGR_NTW;
149
                                spr_dat_o[`OR1200_DMMUCFGR_NTS_BITS] = `OR1200_DMMUCFGR_NTS;
150
                                spr_dat_o[`OR1200_DMMUCFGR_NAE_BITS] = `OR1200_DMMUCFGR_NAE;
151
                                spr_dat_o[`OR1200_DMMUCFGR_CRI_BITS] = `OR1200_DMMUCFGR_CRI;
152
                                spr_dat_o[`OR1200_DMMUCFGR_PRI_BITS] = `OR1200_DMMUCFGR_PRI;
153
                                spr_dat_o[`OR1200_DMMUCFGR_TEIRI_BITS] = `OR1200_DMMUCFGR_TEIRI;
154
                                spr_dat_o[`OR1200_DMMUCFGR_HTR_BITS] = `OR1200_DMMUCFGR_HTR;
155
                                spr_dat_o[`OR1200_DMMUCFGR_RES1_BITS] = `OR1200_DMMUCFGR_RES1;
156
                        end
157
                        `OR1200_SPRGRP_SYS_IMMUCFGR: begin
158
                                spr_dat_o[`OR1200_IMMUCFGR_NTW_BITS] = `OR1200_IMMUCFGR_NTW;
159
                                spr_dat_o[`OR1200_IMMUCFGR_NTS_BITS] = `OR1200_IMMUCFGR_NTS;
160
                                spr_dat_o[`OR1200_IMMUCFGR_NAE_BITS] = `OR1200_IMMUCFGR_NAE;
161
                                spr_dat_o[`OR1200_IMMUCFGR_CRI_BITS] = `OR1200_IMMUCFGR_CRI;
162
                                spr_dat_o[`OR1200_IMMUCFGR_PRI_BITS] = `OR1200_IMMUCFGR_PRI;
163
                                spr_dat_o[`OR1200_IMMUCFGR_TEIRI_BITS] = `OR1200_IMMUCFGR_TEIRI;
164
                                spr_dat_o[`OR1200_IMMUCFGR_HTR_BITS] = `OR1200_IMMUCFGR_HTR;
165
                                spr_dat_o[`OR1200_IMMUCFGR_RES1_BITS] = `OR1200_IMMUCFGR_RES1;
166
                        end
167
                        `OR1200_SPRGRP_SYS_DCCFGR: begin
168
                                spr_dat_o[`OR1200_DCCFGR_NCW_BITS] = `OR1200_DCCFGR_NCW;
169
                                spr_dat_o[`OR1200_DCCFGR_NCS_BITS] = `OR1200_DCCFGR_NCS;
170
                                spr_dat_o[`OR1200_DCCFGR_CBS_BITS] = `OR1200_DCCFGR_CBS;
171
                                spr_dat_o[`OR1200_DCCFGR_CWS_BITS] = `OR1200_DCCFGR_CWS;
172
                                spr_dat_o[`OR1200_DCCFGR_CCRI_BITS] = `OR1200_DCCFGR_CCRI;
173
                                spr_dat_o[`OR1200_DCCFGR_CBIRI_BITS] = `OR1200_DCCFGR_CBIRI;
174
                                spr_dat_o[`OR1200_DCCFGR_CBPRI_BITS] = `OR1200_DCCFGR_CBPRI;
175
                                spr_dat_o[`OR1200_DCCFGR_CBLRI_BITS] = `OR1200_DCCFGR_CBLRI;
176
                                spr_dat_o[`OR1200_DCCFGR_CBFRI_BITS] = `OR1200_DCCFGR_CBFRI;
177
                                spr_dat_o[`OR1200_DCCFGR_CBWBRI_BITS] = `OR1200_DCCFGR_CBWBRI;
178
                                spr_dat_o[`OR1200_DCCFGR_RES1_BITS] = `OR1200_DCCFGR_RES1;
179
                        end
180
                        `OR1200_SPRGRP_SYS_ICCFGR: begin
181
                                spr_dat_o[`OR1200_ICCFGR_NCW_BITS] = `OR1200_ICCFGR_NCW;
182
                                spr_dat_o[`OR1200_ICCFGR_NCS_BITS] = `OR1200_ICCFGR_NCS;
183
                                spr_dat_o[`OR1200_ICCFGR_CBS_BITS] = `OR1200_ICCFGR_CBS;
184
                                spr_dat_o[`OR1200_ICCFGR_CWS_BITS] = `OR1200_ICCFGR_CWS;
185
                                spr_dat_o[`OR1200_ICCFGR_CCRI_BITS] = `OR1200_ICCFGR_CCRI;
186
                                spr_dat_o[`OR1200_ICCFGR_CBIRI_BITS] = `OR1200_ICCFGR_CBIRI;
187
                                spr_dat_o[`OR1200_ICCFGR_CBPRI_BITS] = `OR1200_ICCFGR_CBPRI;
188
                                spr_dat_o[`OR1200_ICCFGR_CBLRI_BITS] = `OR1200_ICCFGR_CBLRI;
189
                                spr_dat_o[`OR1200_ICCFGR_CBFRI_BITS] = `OR1200_ICCFGR_CBFRI;
190
                                spr_dat_o[`OR1200_ICCFGR_CBWBRI_BITS] = `OR1200_ICCFGR_CBWBRI;
191
                                spr_dat_o[`OR1200_ICCFGR_RES1_BITS] = `OR1200_ICCFGR_RES1;
192
                        end
193
                        `OR1200_SPRGRP_SYS_DCFGR: begin
194
                                spr_dat_o[`OR1200_DCFGR_NDP_BITS] = `OR1200_DCFGR_NDP;
195
                                spr_dat_o[`OR1200_DCFGR_WPCI_BITS] = `OR1200_DCFGR_WPCI;
196
                                spr_dat_o[`OR1200_DCFGR_RES1_BITS] = `OR1200_DCFGR_RES1;
197
                        end
198
                        default: spr_dat_o = 32'h0000_0000;
199
                endcase
200
`ifdef OR1200_SYS_FULL_DECODE
201
        else
202
                spr_dat_o = 32'h0000_0000;
203
`endif
204
 
205
`else
206
 
207
//
208
// When configuration registers are not implemented, only
209
// implement VR and UPR
210
//
211
always @(spr_addr)
212
`ifdef OR1200_SYS_FULL_DECODE
213
        if (!spr_addr[31:4])
214
`endif
215
                case(spr_addr[3:0])
216
                        `OR1200_SPRGRP_SYS_VR: begin
217
                                spr_dat_o[`OR1200_VR_REV_BITS] = `OR1200_VR_REV;
218
                                spr_dat_o[`OR1200_VR_RES1_BITS] = `OR1200_VR_RES1;
219
                                spr_dat_o[`OR1200_VR_CFG_BITS] = `OR1200_VR_CFG;
220
                                spr_dat_o[`OR1200_VR_VER_BITS] = `OR1200_VR_VER;
221
                        end
222
                        `OR1200_SPRGRP_SYS_UPR: begin
223
                                spr_dat_o[`OR1200_UPR_UP_BITS] = `OR1200_UPR_UP;
224
                                spr_dat_o[`OR1200_UPR_DCP_BITS] = `OR1200_UPR_DCP;
225
                                spr_dat_o[`OR1200_UPR_ICP_BITS] = `OR1200_UPR_ICP;
226
                                spr_dat_o[`OR1200_UPR_DMP_BITS] = `OR1200_UPR_DMP;
227
                                spr_dat_o[`OR1200_UPR_IMP_BITS] = `OR1200_UPR_IMP;
228
                                spr_dat_o[`OR1200_UPR_MP_BITS] = `OR1200_UPR_MP;
229
                                spr_dat_o[`OR1200_UPR_DUP_BITS] = `OR1200_UPR_DUP;
230
                                spr_dat_o[`OR1200_UPR_PCUP_BITS] = `OR1200_UPR_PCUP;
231
                                spr_dat_o[`OR1200_UPR_PMP_BITS] = `OR1200_UPR_PMP;
232
                                spr_dat_o[`OR1200_UPR_PICP_BITS] = `OR1200_UPR_PICP;
233
                                spr_dat_o[`OR1200_UPR_TTP_BITS] = `OR1200_UPR_TTP;
234
                                spr_dat_o[`OR1200_UPR_RES1_BITS] = `OR1200_UPR_RES1;
235
                                spr_dat_o[`OR1200_UPR_CUP_BITS] = `OR1200_UPR_CUP;
236
                        end
237
                        default: spr_dat_o = 32'h0000_0000;
238
                endcase
239
`ifdef OR1200_SYS_FULL_DECODE
240
        else
241
                spr_dat_o = 32'h0000_0000;
242
`endif
243
 
244
`endif
245
 
246
 
247
always @ (posedge clk_i_cml_1) begin
248
spr_addr_cml_1 <= spr_addr;
249
end
250
endmodule
251
 

powered by: WebSVN 2.1.0

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