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

Subversion Repositories or1k

[/] [or1k/] [tags/] [rel_15/] [or1200/] [rtl/] [verilog/] [or1200_sprs.v] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 504 lampret
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  OR1200's interface to SPRs                                  ////
4
////                                                              ////
5
////  This file is part of the OpenRISC 1200 project              ////
6
////  http://www.opencores.org/cores/or1k/                        ////
7
////                                                              ////
8
////  Description                                                 ////
9
////  Decoding of SPR addresses and access to SPRs                ////
10
////                                                              ////
11
////  To Do:                                                      ////
12
////   - make it smaller and faster                               ////
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 1032 lampret
// Revision 1.8  2002/08/28 01:44:25  lampret
48
// Removed some commented RTL. Fixed SR/ESR flag bug.
49
//
50 1011 lampret
// Revision 1.7  2002/03/29 15:16:56  lampret
51
// Some of the warnings fixed.
52
//
53 788 lampret
// Revision 1.6  2002/03/11 01:26:57  lampret
54
// Changed generation of SPR address. Now it is ORed from base and offset instead of a sum.
55
//
56 736 lampret
// Revision 1.5  2002/02/01 19:56:54  lampret
57
// Fixed combinational loops.
58
//
59 636 lampret
// Revision 1.4  2002/01/23 07:52:36  lampret
60
// Changed default reset values for SR and ESR to match or1ksim's. Fixed flop model in or1200_dpram_32x32 when OR1200_XILINX_RAM32X1D is defined.
61
//
62 610 lampret
// Revision 1.3  2002/01/19 09:27:49  lampret
63
// SR[TEE] should be zero after reset.
64
//
65 596 lampret
// Revision 1.2  2002/01/18 07:56:00  lampret
66
// No more low/high priority interrupts (PICPR removed). Added tick timer exception. Added exception prefix (SR[EPH]). Fixed single-step bug whenreading NPC.
67
//
68 589 lampret
// Revision 1.1  2002/01/03 08:16:15  lampret
69
// New prefixes for RTL files, prefixed module names. Updated cache controllers and MMUs.
70
//
71 504 lampret
// Revision 1.12  2001/11/23 21:42:31  simons
72
// Program counter divided to PPC and NPC.
73
//
74
// Revision 1.11  2001/11/23 08:38:51  lampret
75
// Changed DSR/DRR behavior and exception detection.
76
//
77
// Revision 1.10  2001/11/12 01:45:41  lampret
78
// Moved flag bit into SR. Changed RF enable from constant enable to dynamic enable for read ports.
79
//
80
// Revision 1.9  2001/10/21 17:57:16  lampret
81
// 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.
82
//
83
// Revision 1.8  2001/10/14 13:12:10  lampret
84
// MP3 version.
85
//
86
// Revision 1.1.1.1  2001/10/06 10:18:36  igorm
87
// no message
88
//
89
// Revision 1.3  2001/08/13 03:36:20  lampret
90
// Added cfg regs. Moved all defines into one defines.v file. More cleanup.
91
//
92
// Revision 1.2  2001/08/09 13:39:33  lampret
93
// Major clean-up.
94
//
95
// Revision 1.1  2001/07/20 00:46:21  lampret
96
// Development version of RTL. Libraries are missing.
97
//
98
//
99
 
100
// synopsys translate_off
101
`include "timescale.v"
102
// synopsys translate_on
103
`include "or1200_defines.v"
104
 
105
module or1200_sprs(
106
                // Clk & Rst
107
                clk, rst,
108
 
109
                // Internal CPU interface
110 1032 lampret
                flagforw, flag_we, flag, cyforw, cy_we, carry,
111
                addrbase, addrofs, dat_i, alu_op, branch_op,
112 788 lampret
                epcr, eear, esr, except_started,
113 1011 lampret
                to_wbmux, epcr_we, eear_we, esr_we, pc_we, sr_we, to_sr, sr,
114 504 lampret
                spr_dat_cfgr, spr_dat_rf, spr_dat_npc, spr_dat_ppc, spr_dat_mac,
115
 
116
                // From/to other RISC units
117
                spr_dat_pic, spr_dat_tt, spr_dat_pm,
118
                spr_dat_dmmu, spr_dat_immu, spr_dat_du,
119 636 lampret
                spr_addr, spr_dat_o, spr_cs, spr_we,
120 504 lampret
 
121
                du_addr, du_dat_du, du_read,
122 636 lampret
                du_write, du_dat_cpu
123 504 lampret
 
124
);
125
 
126
parameter width = `OR1200_OPERAND_WIDTH;
127
 
128
//
129
// I/O Ports
130
//
131
 
132
//
133
// Internal CPU interface
134
//
135
input                           clk;            // Clock
136
input                           rst;            // Reset
137
input                           flagforw;       // From ALU
138
input                           flag_we;        // From ALU
139 1032 lampret
output                          flag;           // SR[F]
140
input                           cyforw;         // From ALU
141
input                           cy_we;          // From ALU
142
output                          carry;          // SR[CY]
143 504 lampret
input   [width-1:0]              addrbase;       // SPR base address
144
input   [15:0]                   addrofs;        // SPR offset
145
input   [width-1:0]              dat_i;          // SPR write data
146
input   [`OR1200_ALUOP_WIDTH-1:0]        alu_op;         // ALU operation
147
input   [`OR1200_BRANCHOP_WIDTH-1:0]     branch_op;      // Branch operation
148
input   [width-1:0]              epcr;           // EPCR0
149
input   [width-1:0]              eear;           // EEAR0
150
input   [`OR1200_SR_WIDTH-1:0]   esr;            // ESR0
151
input                           except_started; // Exception was started
152
output  [width-1:0]              to_wbmux;       // For l.mfspr
153
output                          epcr_we;        // EPCR0 write enable
154
output                          eear_we;        // EEAR0 write enable
155
output                          esr_we;         // ESR0 write enable
156
output                          pc_we;          // PC write enable
157 1011 lampret
output                          sr_we;          // Write enable SR
158
output  [`OR1200_SR_WIDTH-1:0]   to_sr;          // Data to SR
159
output  [`OR1200_SR_WIDTH-1:0]   sr;             // SR
160 504 lampret
input   [31:0]                   spr_dat_cfgr;   // Data from CFGR
161
input   [31:0]                   spr_dat_rf;     // Data from RF
162
input   [31:0]                   spr_dat_npc;    // Data from NPC
163
input   [31:0]                   spr_dat_ppc;    // Data from PPC   
164
input   [31:0]                   spr_dat_mac;    // Data from MAC
165
 
166
//
167
// To/from other RISC units
168
//
169
input   [31:0]                   spr_dat_pic;    // Data from PIC
170
input   [31:0]                   spr_dat_tt;     // Data from TT
171
input   [31:0]                   spr_dat_pm;     // Data from PM
172
input   [31:0]                   spr_dat_dmmu;   // Data from DMMU
173
input   [31:0]                   spr_dat_immu;   // Data from IMMU
174
input   [31:0]                   spr_dat_du;     // Data from DU
175
output  [31:0]                   spr_addr;       // SPR Address
176 636 lampret
output  [31:0]                   spr_dat_o;      // Data to unit
177 504 lampret
output  [31:0]                   spr_cs;         // Unit select
178
output                          spr_we;         // SPR write enable
179
 
180
//
181
// To/from Debug Unit
182
//
183
input   [width-1:0]              du_addr;        // Address
184
input   [width-1:0]              du_dat_du;      // Data from DU to SPRS
185
input                           du_read;        // Read qualifier
186
input                           du_write;       // Write qualifier
187 636 lampret
output  [width-1:0]              du_dat_cpu;     // Data from SPRS to DU
188 504 lampret
 
189
//
190
// Internal regs & wires
191
//
192
reg     [`OR1200_SR_WIDTH-1:0]           sr;             // SR
193
reg                             write_spr;      // Write SPR
194
reg                             read_spr;       // Read SPR
195
reg     [width-1:0]              to_wbmux;       // For l.mfspr
196
wire                            cfgr_sel;       // Select for cfg regs
197
wire                            rf_sel;         // Select for RF
198
wire                            npc_sel;        // Select for NPC
199
wire                            ppc_sel;        // Select for PPC
200
wire                            sr_sel;         // Select for SR        
201
wire                            epcr_sel;       // Select for EPCR0
202
wire                            eear_sel;       // Select for EEAR0
203
wire                            esr_sel;        // Select for ESR0
204
wire    [31:0]                   sys_data;       // Read data from system SPRs
205
wire                            du_access;      // Debug unit access
206
wire    [`OR1200_ALUOP_WIDTH-1:0]        sprs_op;        // ALU operation
207
reg     [31:0]                   unqualified_cs; // Unqualified chip selects
208
 
209
//
210
// Decide if it is debug unit access
211
//
212
assign du_access = du_read | du_write;
213
 
214
//
215
// Generate sprs opcode
216
//
217
assign sprs_op = du_write ? `OR1200_ALUOP_MTSR : du_read ? `OR1200_ALUOP_MFSR : alu_op;
218
 
219
//
220
// Generate SPR address from base address and offset
221
// OR from debug unit address
222
//
223 736 lampret
assign spr_addr = du_access ? du_addr : addrbase | {16'h0000, addrofs};
224 504 lampret
 
225
//
226 636 lampret
// SPR is written by debug unit or by l.mtspr
227 504 lampret
//
228 636 lampret
assign spr_dat_o = du_write ? du_dat_du : dat_i;
229 504 lampret
 
230
//
231 636 lampret
// debug unit data input:
232
//  - write into debug unit SPRs by debug unit itself
233
//  - read of SPRS by debug unit
234
//  - write into debug unit SPRs by l.mtspr
235
//
236
assign du_dat_cpu = du_write ? du_dat_du : du_read ? to_wbmux : dat_i;
237
 
238
//
239 504 lampret
// Write into SPRs when l.mtspr
240
//
241
assign spr_we = du_write | write_spr;
242
 
243
//
244
// Qualify chip selects
245
//
246
assign spr_cs = unqualified_cs & {32{read_spr | write_spr}};
247
 
248
//
249
// Decoding of groups
250
//
251
always @(spr_addr)
252
        case (spr_addr[`OR1200_SPR_GROUP_BITS]) // synopsys parallel_case
253
                `OR1200_SPR_GROUP_WIDTH'd00: unqualified_cs = 32'b00000000_00000000_00000000_00000001;
254
                `OR1200_SPR_GROUP_WIDTH'd01: unqualified_cs = 32'b00000000_00000000_00000000_00000010;
255
                `OR1200_SPR_GROUP_WIDTH'd02: unqualified_cs = 32'b00000000_00000000_00000000_00000100;
256
                `OR1200_SPR_GROUP_WIDTH'd03: unqualified_cs = 32'b00000000_00000000_00000000_00001000;
257
                `OR1200_SPR_GROUP_WIDTH'd04: unqualified_cs = 32'b00000000_00000000_00000000_00010000;
258
                `OR1200_SPR_GROUP_WIDTH'd05: unqualified_cs = 32'b00000000_00000000_00000000_00100000;
259
                `OR1200_SPR_GROUP_WIDTH'd06: unqualified_cs = 32'b00000000_00000000_00000000_01000000;
260
                `OR1200_SPR_GROUP_WIDTH'd07: unqualified_cs = 32'b00000000_00000000_00000000_10000000;
261
                `OR1200_SPR_GROUP_WIDTH'd08: unqualified_cs = 32'b00000000_00000000_00000001_00000000;
262
                `OR1200_SPR_GROUP_WIDTH'd09: unqualified_cs = 32'b00000000_00000000_00000010_00000000;
263
                `OR1200_SPR_GROUP_WIDTH'd10: unqualified_cs = 32'b00000000_00000000_00000100_00000000;
264
                `OR1200_SPR_GROUP_WIDTH'd11: unqualified_cs = 32'b00000000_00000000_00001000_00000000;
265
                `OR1200_SPR_GROUP_WIDTH'd12: unqualified_cs = 32'b00000000_00000000_00010000_00000000;
266
                `OR1200_SPR_GROUP_WIDTH'd13: unqualified_cs = 32'b00000000_00000000_00100000_00000000;
267
                `OR1200_SPR_GROUP_WIDTH'd14: unqualified_cs = 32'b00000000_00000000_01000000_00000000;
268
                `OR1200_SPR_GROUP_WIDTH'd15: unqualified_cs = 32'b00000000_00000000_10000000_00000000;
269
                `OR1200_SPR_GROUP_WIDTH'd16: unqualified_cs = 32'b00000000_00000001_00000000_00000000;
270
                `OR1200_SPR_GROUP_WIDTH'd17: unqualified_cs = 32'b00000000_00000010_00000000_00000000;
271
                `OR1200_SPR_GROUP_WIDTH'd18: unqualified_cs = 32'b00000000_00000100_00000000_00000000;
272
                `OR1200_SPR_GROUP_WIDTH'd19: unqualified_cs = 32'b00000000_00001000_00000000_00000000;
273
                `OR1200_SPR_GROUP_WIDTH'd20: unqualified_cs = 32'b00000000_00010000_00000000_00000000;
274
                `OR1200_SPR_GROUP_WIDTH'd21: unqualified_cs = 32'b00000000_00100000_00000000_00000000;
275
                `OR1200_SPR_GROUP_WIDTH'd22: unqualified_cs = 32'b00000000_01000000_00000000_00000000;
276
                `OR1200_SPR_GROUP_WIDTH'd23: unqualified_cs = 32'b00000000_10000000_00000000_00000000;
277
                `OR1200_SPR_GROUP_WIDTH'd24: unqualified_cs = 32'b00000001_00000000_00000000_00000000;
278
                `OR1200_SPR_GROUP_WIDTH'd25: unqualified_cs = 32'b00000010_00000000_00000000_00000000;
279
                `OR1200_SPR_GROUP_WIDTH'd26: unqualified_cs = 32'b00000100_00000000_00000000_00000000;
280
                `OR1200_SPR_GROUP_WIDTH'd27: unqualified_cs = 32'b00001000_00000000_00000000_00000000;
281
                `OR1200_SPR_GROUP_WIDTH'd28: unqualified_cs = 32'b00010000_00000000_00000000_00000000;
282
                `OR1200_SPR_GROUP_WIDTH'd29: unqualified_cs = 32'b00100000_00000000_00000000_00000000;
283
                `OR1200_SPR_GROUP_WIDTH'd30: unqualified_cs = 32'b01000000_00000000_00000000_00000000;
284
                `OR1200_SPR_GROUP_WIDTH'd31: unqualified_cs = 32'b10000000_00000000_00000000_00000000;
285
        endcase
286
 
287
//
288
// SPRs System Group
289
//
290
 
291
//
292
// What to write into SR
293
//
294 1032 lampret
assign to_sr[`OR1200_SR_FO:`OR1200_SR_OV] =
295
                (branch_op == `OR1200_BRANCHOP_RFE) ? esr[`OR1200_SR_FO:`OR1200_SR_OV] :
296
                (write_spr && sr_sel) ? {1'b1, spr_dat_o[`OR1200_SR_FO-1:`OR1200_SR_OV]}:
297
                sr[`OR1200_SR_FO:`OR1200_SR_OV];
298
assign to_sr[`OR1200_SR_CY] =
299
                (branch_op == `OR1200_BRANCHOP_RFE) ? esr[`OR1200_SR_CY] :
300
                cy_we ? cyforw :
301
                (write_spr && sr_sel) ? spr_dat_o[`OR1200_SR_CY] :
302
                sr[`OR1200_SR_CY];
303
assign to_sr[`OR1200_SR_F] =
304
                (branch_op == `OR1200_BRANCHOP_RFE) ? esr[`OR1200_SR_F] :
305
                flag_we ? flagforw :
306
                (write_spr && sr_sel) ? spr_dat_o[`OR1200_SR_F] :
307
                sr[`OR1200_SR_F];
308
assign to_sr[`OR1200_SR_CE:`OR1200_SR_SM] =
309
                (branch_op == `OR1200_BRANCHOP_RFE) ? esr[`OR1200_SR_CE:`OR1200_SR_SM] :
310
                (write_spr && sr_sel) ? spr_dat_o[`OR1200_SR_CE:`OR1200_SR_SM]:
311
                sr[`OR1200_SR_CE:`OR1200_SR_SM];
312 504 lampret
 
313
//
314
// Selects for system SPRs
315
//
316
assign cfgr_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:4] == `OR1200_SPR_CFGR));
317
assign rf_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:5] == `OR1200_SPR_RF));
318
assign npc_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_NPC));
319
assign ppc_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_PPC));
320
assign sr_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_SR));
321
assign epcr_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_EPCR));
322
assign eear_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_EEAR));
323
assign esr_sel = (spr_cs[`OR1200_SPR_GROUP_SYS] && (spr_addr[10:0] == `OR1200_SPR_ESR));
324
 
325
//
326
// Write enables for system SPRs
327
//
328 1032 lampret
assign sr_we = (write_spr && sr_sel) | (branch_op == `OR1200_BRANCHOP_RFE) | flag_we | cy_we;
329 504 lampret
assign pc_we = (write_spr && (npc_sel | ppc_sel));
330
assign epcr_we = (write_spr && epcr_sel);
331
assign eear_we = (write_spr && eear_sel);
332
assign esr_we = (write_spr && esr_sel);
333
 
334
//
335
// Output from system SPRs
336
//
337
assign sys_data = (spr_dat_cfgr & {32{read_spr & cfgr_sel}}) |
338
                  (spr_dat_rf & {32{read_spr & rf_sel}}) |
339
                  (spr_dat_npc & {32{read_spr & npc_sel}}) |
340
                  (spr_dat_ppc & {32{read_spr & ppc_sel}}) |
341
                  ({{32-`OR1200_SR_WIDTH{1'b0}},sr} & {32{read_spr & sr_sel}}) |
342
                  (epcr & {32{read_spr & epcr_sel}}) |
343
                  (eear & {32{read_spr & eear_sel}}) |
344
                  ({{32-`OR1200_SR_WIDTH{1'b0}},esr} & {32{read_spr & esr_sel}});
345
 
346
//
347
// Flag alias
348
//
349
assign flag = sr[`OR1200_SR_F];
350
 
351
//
352 1032 lampret
// Carry alias
353
//
354
assign carry = sr[`OR1200_SR_CY];
355
 
356
//
357 504 lampret
// Supervision register
358
//
359
always @(posedge clk or posedge rst)
360
        if (rst)
361 610 lampret
                sr <= #1 {1'b1, {`OR1200_SR_WIDTH-2{1'b0}}, 1'b1};
362 504 lampret
        else if (except_started) begin
363 589 lampret
                sr[`OR1200_SR_SM] <= #1 1'b1;
364
                sr[`OR1200_SR_TEE] <= #1 1'b0;
365
                sr[`OR1200_SR_IEE] <= #1 1'b0;
366 504 lampret
                sr[`OR1200_SR_DME] <= #1 1'b0;
367
                sr[`OR1200_SR_IME] <= #1 1'b0;
368
        end
369 589 lampret
        else if (sr_we)
370
                sr <= #1 to_sr[`OR1200_SR_WIDTH-1:0];
371 504 lampret
 
372
//
373
// MTSPR/MFSPR interface
374
//
375 636 lampret
always @(sprs_op or spr_addr or sys_data or spr_dat_mac or spr_dat_pic or spr_dat_pm or
376 504 lampret
        spr_dat_dmmu or spr_dat_immu or spr_dat_du or spr_dat_tt) begin
377 788 lampret
        case (sprs_op)  // synopsys parallel_case
378 504 lampret
                `OR1200_ALUOP_MTSR : begin
379
                        write_spr = 1'b1;
380
                        read_spr = 1'b0;
381
                        to_wbmux = 32'b0;
382
                end
383
                `OR1200_ALUOP_MFSR : begin
384 788 lampret
                        casex (spr_addr[`OR1200_SPR_GROUP_BITS]) // synopsys parallel_case
385 504 lampret
                                `OR1200_SPR_GROUP_TT:
386
                                        to_wbmux = spr_dat_tt;
387
                                `OR1200_SPR_GROUP_PIC:
388
                                        to_wbmux = spr_dat_pic;
389
                                `OR1200_SPR_GROUP_PM:
390
                                        to_wbmux = spr_dat_pm;
391
                                `OR1200_SPR_GROUP_DMMU:
392
                                        to_wbmux = spr_dat_dmmu;
393
                                `OR1200_SPR_GROUP_IMMU:
394
                                        to_wbmux = spr_dat_immu;
395
                                `OR1200_SPR_GROUP_MAC:
396
                                        to_wbmux = spr_dat_mac;
397
                                `OR1200_SPR_GROUP_DU:
398
                                        to_wbmux = spr_dat_du;
399
                                `OR1200_SPR_GROUP_SYS:
400
                                        to_wbmux = sys_data;
401
                                default:
402
                                        to_wbmux = 32'b0;
403
                        endcase
404
                        write_spr = 1'b0;
405
                        read_spr = 1'b1;
406
                end
407
                default : begin
408
                        write_spr = 1'b0;
409
                        read_spr = 1'b0;
410
                        to_wbmux = 32'b0;
411
                end
412
        endcase
413
end
414
 
415
endmodule

powered by: WebSVN 2.1.0

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