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

Subversion Repositories or1200_hp

[/] [or1200_hp/] [trunk/] [rtl/] [rtl_cm4/] [verilog/] [or1200_lsu.v] - Blame information for rev 3

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

Line No. Rev Author Line
1 2 tobil
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  OR1200's Load/Store unit                                    ////
4
////                                                              ////
5
////  This file is part of the OpenRISC 1200 project              ////
6
////  http://www.opencores.org/cores/or1k/                        ////
7
////                                                              ////
8
////  Description                                                 ////
9
////  Interface between CPU and DC.                               ////
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
// Revision 1.4  2002/03/29 15:16:56  lampret
48
// Some of the warnings fixed.
49
//
50
// Revision 1.3  2002/02/11 04:33:17  lampret
51
// Speed optimizations (removed duplicate _cyc_ and _stb_). Fixed D/IMMU cache-inhibit attr.
52
//
53
// Revision 1.2  2002/01/18 07:56:00  lampret
54
// No more low/high priority interrupts (PICPR removed). Added tick timer exception. Added exception prefix (SR[EPH]). Fixed single-step bug whenreading NPC.
55
//
56
// Revision 1.1  2002/01/03 08:16:15  lampret
57
// New prefixes for RTL files, prefixed module names. Updated cache controllers and MMUs.
58
//
59
// Revision 1.9  2001/11/30 18:59:47  simons
60
// *** empty log message ***
61
//
62
// Revision 1.8  2001/10/21 17:57:16  lampret
63
// 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.
64
//
65
// Revision 1.7  2001/10/14 13:12:09  lampret
66
// MP3 version.
67
//
68
// Revision 1.1.1.1  2001/10/06 10:18:36  igorm
69
// no message
70
//
71
// Revision 1.2  2001/08/09 13:39:33  lampret
72
// Major clean-up.
73
//
74
// Revision 1.1  2001/07/20 00:46:03  lampret
75
// Development version of RTL. Libraries are missing.
76
//
77
//
78
 
79
// synopsys translate_off
80
`include "timescale.v"
81
// synopsys translate_on
82
`include "or1200_defines.v"
83
 
84
module or1200_lsu_cm4(
85
                clk_i_cml_1,
86
                clk_i_cml_2,
87
                clk_i_cml_3,
88
 
89
 
90
        // Internal i/f
91
        addrbase, addrofs, lsu_op, lsu_datain, lsu_dataout, lsu_stall, lsu_unstall,
92
        du_stall, except_align, except_dtlbmiss, except_dmmufault, except_dbuserr,
93
 
94
        // External i/f to DC
95
        dcpu_adr_o, dcpu_cycstb_o, dcpu_we_o, dcpu_sel_o, dcpu_tag_o, dcpu_dat_o,
96
        dcpu_dat_i, dcpu_ack_i, dcpu_rty_i, dcpu_err_i, dcpu_tag_i
97
);
98
 
99
 
100
input clk_i_cml_1;
101
input clk_i_cml_2;
102
input clk_i_cml_3;
103
reg [ 4 - 1 : 0 ] lsu_op_cml_1;
104
reg  lsu_unstall_cml_1;
105
reg  du_stall_cml_1;
106
reg  except_align_cml_1;
107
reg [ 31 : 0 ] dcpu_adr_o_cml_2;
108
reg [ 31 : 0 ] dcpu_adr_o_cml_1;
109
 
110
 
111
 
112
parameter dw = `OR1200_OPERAND_WIDTH;
113
parameter aw = `OR1200_REGFILE_ADDR_WIDTH;
114
 
115
//
116
// I/O
117
//
118
 
119
//
120
// Internal i/f
121
//
122
input   [31:0]                   addrbase;
123
input   [31:0]                   addrofs;
124
input   [`OR1200_LSUOP_WIDTH-1:0]        lsu_op;
125
input   [dw-1:0]         lsu_datain;
126
output  [dw-1:0]         lsu_dataout;
127
output                          lsu_stall;
128
output                          lsu_unstall;
129
input                           du_stall;
130
output                          except_align;
131
output                          except_dtlbmiss;
132
output                          except_dmmufault;
133
output                          except_dbuserr;
134
 
135
//
136
// External i/f to DC
137
//
138
output  [31:0]                   dcpu_adr_o;
139
output                          dcpu_cycstb_o;
140
output                          dcpu_we_o;
141
output  [3:0]                    dcpu_sel_o;
142
output  [3:0]                    dcpu_tag_o;
143
output  [31:0]                   dcpu_dat_o;
144
input   [31:0]                   dcpu_dat_i;
145
input                           dcpu_ack_i;
146
input                           dcpu_rty_i;
147
input                           dcpu_err_i;
148
input   [3:0]                    dcpu_tag_i;
149
 
150
//
151
// Internal wires/regs
152
//
153
reg     [3:0]                    dcpu_sel_o;
154
 
155
//
156
// Internal I/F assignments
157
//
158
assign lsu_stall = dcpu_rty_i & dcpu_cycstb_o;
159
assign lsu_unstall = dcpu_ack_i;
160
assign except_align = ((lsu_op == `OR1200_LSUOP_SH) | (lsu_op == `OR1200_LSUOP_LHZ) | (lsu_op == `OR1200_LSUOP_LHS)) & dcpu_adr_o[0]
161
                |  ((lsu_op == `OR1200_LSUOP_SW) | (lsu_op == `OR1200_LSUOP_LWZ) | (lsu_op == `OR1200_LSUOP_LWS)) & |dcpu_adr_o[1:0];
162
assign except_dtlbmiss = dcpu_err_i & (dcpu_tag_i == `OR1200_DTAG_TE);
163
assign except_dmmufault = dcpu_err_i & (dcpu_tag_i == `OR1200_DTAG_PE);
164
assign except_dbuserr = dcpu_err_i & (dcpu_tag_i == `OR1200_DTAG_BE);
165
 
166
//
167
// External I/F assignments
168
//
169
assign dcpu_adr_o = addrbase + addrofs;
170
 
171
// SynEDA CoreMultiplier
172
// assignment(s): dcpu_cycstb_o
173
// replace(s): lsu_op, lsu_unstall, du_stall, except_align
174
assign dcpu_cycstb_o = du_stall_cml_1 | lsu_unstall_cml_1 | except_align_cml_1 ? 1'b0 : |lsu_op_cml_1;
175
assign dcpu_we_o = lsu_op[3];
176
assign dcpu_tag_o = dcpu_cycstb_o ? `OR1200_DTAG_ND : `OR1200_DTAG_IDLE;
177
 
178
// SynEDA CoreMultiplier
179
// assignment(s): dcpu_sel_o
180
// replace(s): lsu_op, dcpu_adr_o
181
always @(lsu_op_cml_1 or dcpu_adr_o_cml_1)
182
        casex({lsu_op_cml_1, dcpu_adr_o_cml_1[1:0]})
183
                {`OR1200_LSUOP_SB, 2'b00} : dcpu_sel_o = 4'b1000;
184
                {`OR1200_LSUOP_SB, 2'b01} : dcpu_sel_o = 4'b0100;
185
                {`OR1200_LSUOP_SB, 2'b10} : dcpu_sel_o = 4'b0010;
186
                {`OR1200_LSUOP_SB, 2'b11} : dcpu_sel_o = 4'b0001;
187
                {`OR1200_LSUOP_SH, 2'b00} : dcpu_sel_o = 4'b1100;
188
                {`OR1200_LSUOP_SH, 2'b10} : dcpu_sel_o = 4'b0011;
189
                {`OR1200_LSUOP_SW, 2'b00} : dcpu_sel_o = 4'b1111;
190
                {`OR1200_LSUOP_LBZ, 2'b00}, {`OR1200_LSUOP_LBS, 2'b00} : dcpu_sel_o = 4'b1000;
191
                {`OR1200_LSUOP_LBZ, 2'b01}, {`OR1200_LSUOP_LBS, 2'b01} : dcpu_sel_o = 4'b0100;
192
                {`OR1200_LSUOP_LBZ, 2'b10}, {`OR1200_LSUOP_LBS, 2'b10} : dcpu_sel_o = 4'b0010;
193
                {`OR1200_LSUOP_LBZ, 2'b11}, {`OR1200_LSUOP_LBS, 2'b11} : dcpu_sel_o = 4'b0001;
194
                {`OR1200_LSUOP_LHZ, 2'b00}, {`OR1200_LSUOP_LHS, 2'b00} : dcpu_sel_o = 4'b1100;
195
                {`OR1200_LSUOP_LHZ, 2'b10}, {`OR1200_LSUOP_LHS, 2'b10} : dcpu_sel_o = 4'b0011;
196
                {`OR1200_LSUOP_LWZ, 2'b00}, {`OR1200_LSUOP_LWS, 2'b00} : dcpu_sel_o = 4'b1111;
197
                default : dcpu_sel_o = 4'b0000;
198
        endcase
199
 
200
//
201
// Instantiation of Memory-to-regfile aligner
202
//
203
wire [1:0] mem2reg_addr;
204
 
205
// SynEDA CoreMultiplier
206
// assignment(s): mem2reg_addr
207
// replace(s): dcpu_adr_o
208
assign mem2reg_addr = dcpu_adr_o_cml_2[1:0];
209
or1200_mem2reg_cm4 or1200_mem2reg(
210
                .clk_i_cml_1(clk_i_cml_1),
211
                .clk_i_cml_2(clk_i_cml_2),
212
        .addr(mem2reg_addr),
213
        .lsu_op(lsu_op),
214
        .memdata(dcpu_dat_i),
215
        .regdata(lsu_dataout)
216
);
217
 
218
//
219
// Instantiation of Regfile-to-memory aligner
220
//
221
or1200_reg2mem_cm4 or1200_reg2mem(
222
                .clk_i_cml_1(clk_i_cml_1),
223
                .clk_i_cml_2(clk_i_cml_2),
224
                .clk_i_cml_3(clk_i_cml_3),
225
        .addr(mem2reg_addr),
226
        .lsu_op(lsu_op),
227
        .regdata(lsu_datain),
228
        .memdata(dcpu_dat_o)
229
);
230
 
231
 
232
always @ (posedge clk_i_cml_1) begin
233
lsu_op_cml_1 <= lsu_op;
234
lsu_unstall_cml_1 <= lsu_unstall;
235
du_stall_cml_1 <= du_stall;
236
except_align_cml_1 <= except_align;
237
dcpu_adr_o_cml_1 <= dcpu_adr_o;
238
end
239
always @ (posedge clk_i_cml_2) begin
240
dcpu_adr_o_cml_2 <= dcpu_adr_o_cml_1;
241
end
242
endmodule
243
 

powered by: WebSVN 2.1.0

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