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

Subversion Repositories or1k

[/] [or1k/] [tags/] [rel_21/] [or1200/] [rtl/] [verilog/] [or1200_lsu.v] - Blame information for rev 589

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

Line No. Rev Author Line
1 504 lampret
//////////////////////////////////////////////////////////////////////
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 589 lampret
// Revision 1.1  2002/01/03 08:16:15  lampret
48
// New prefixes for RTL files, prefixed module names. Updated cache controllers and MMUs.
49
//
50 504 lampret
// Revision 1.9  2001/11/30 18:59:47  simons
51
// *** empty log message ***
52
//
53
// Revision 1.8  2001/10/21 17:57:16  lampret
54
// 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.
55
//
56
// Revision 1.7  2001/10/14 13:12:09  lampret
57
// MP3 version.
58
//
59
// Revision 1.1.1.1  2001/10/06 10:18:36  igorm
60
// no message
61
//
62
// Revision 1.2  2001/08/09 13:39:33  lampret
63
// Major clean-up.
64
//
65
// Revision 1.1  2001/07/20 00:46:03  lampret
66
// Development version of RTL. Libraries are missing.
67
//
68
//
69
 
70
// synopsys translate_off
71
`include "timescale.v"
72
// synopsys translate_on
73
`include "or1200_defines.v"
74
 
75
module or1200_lsu(
76
        // Clock and reset
77
        clk, rst,
78
 
79
        // Internal i/f
80
        addrbase, addrofs, lsu_op, lsu_datain, lsu_dataout, lsu_stall, lsu_unstall,
81 589 lampret
        du_stall, flushpipe, except_align, except_dtlbmiss, except_dmmufault, except_dbuserr,
82 504 lampret
 
83
        // External i/f to DC
84
        dcpu_adr_o, dcpu_cyc_o, dcpu_stb_o, dcpu_we_o, dcpu_sel_o, dcpu_tag_o, dcpu_dat_o,
85
        dcpu_dat_i, dcpu_ack_i, dcpu_rty_i, dcpu_err_i, dcpu_tag_i
86
);
87
 
88
parameter dw = `OR1200_OPERAND_WIDTH;
89
parameter aw = `OR1200_REGFILE_ADDR_WIDTH;
90
 
91
//
92
// I/O
93
//
94
 
95
//
96
// Clock and reset
97
//
98
input                           clk;
99
input                           rst;
100
 
101
//
102
// Internal i/f
103
//
104
input   [31:0]                   addrbase;
105
input   [31:0]                   addrofs;
106
input   [`OR1200_LSUOP_WIDTH-1:0]        lsu_op;
107
input   [dw-1:0]         lsu_datain;
108
output  [dw-1:0]         lsu_dataout;
109
output                          lsu_stall;
110
output                          lsu_unstall;
111
input                           du_stall;
112 589 lampret
input                           flushpipe;
113 504 lampret
output                          except_align;
114
output                          except_dtlbmiss;
115
output                          except_dmmufault;
116
output                          except_dbuserr;
117
 
118
//
119
// External i/f to DC
120
//
121
output  [31:0]                   dcpu_adr_o;
122
output                          dcpu_cyc_o;
123
output                          dcpu_stb_o;
124
output                          dcpu_we_o;
125
output  [3:0]                    dcpu_sel_o;
126
output  [3:0]                    dcpu_tag_o;
127
output  [31:0]                   dcpu_dat_o;
128
input   [31:0]                   dcpu_dat_i;
129
input                           dcpu_ack_i;
130
input                           dcpu_rty_i;
131
input                           dcpu_err_i;
132
input   [3:0]                    dcpu_tag_i;
133
 
134
//
135
// Internal wires/regs
136
//
137
reg     [3:0]                    dcpu_sel_o;
138
 
139
//
140
// Internal I/F assignments
141
//
142
assign lsu_stall = dcpu_rty_i & dcpu_cyc_o;
143
assign lsu_unstall = dcpu_ack_i;
144
assign except_align = ((lsu_op == `OR1200_LSUOP_SH) | (lsu_op == `OR1200_LSUOP_LHZ) | (lsu_op == `OR1200_LSUOP_LHS)) & dcpu_adr_o[0]
145
                |  ((lsu_op == `OR1200_LSUOP_SW) | (lsu_op == `OR1200_LSUOP_LWZ) | (lsu_op == `OR1200_LSUOP_LWS)) & |dcpu_adr_o[1:0];
146
assign except_dtlbmiss = dcpu_err_i & (dcpu_tag_i == `OR1200_DTAG_TE);
147
assign except_dmmufault = dcpu_err_i & (dcpu_tag_i == `OR1200_DTAG_PE);
148
assign except_dbuserr = dcpu_err_i & (dcpu_tag_i == `OR1200_DTAG_BE);
149
 
150
//
151
// External I/F assignments
152
//
153
assign dcpu_adr_o = addrbase + addrofs;
154
assign dcpu_cyc_o = du_stall | lsu_unstall ? 1'b0 : |lsu_op;
155
assign dcpu_stb_o = dcpu_cyc_o;
156
assign dcpu_we_o = lsu_op[3];
157
assign dcpu_tag_o = dcpu_cyc_o ? `OR1200_DTAG_ND : `OR1200_DTAG_IDLE;
158
always @(lsu_op or dcpu_adr_o)
159
        casex({lsu_op, dcpu_adr_o[1:0]})
160
                {`OR1200_LSUOP_SB, 2'b00} : dcpu_sel_o = 4'b1000;
161
                {`OR1200_LSUOP_SB, 2'b01} : dcpu_sel_o = 4'b0100;
162
                {`OR1200_LSUOP_SB, 2'b10} : dcpu_sel_o = 4'b0010;
163
                {`OR1200_LSUOP_SB, 2'b11} : dcpu_sel_o = 4'b0001;
164
                {`OR1200_LSUOP_SH, 2'b00} : dcpu_sel_o = 4'b1100;
165
                {`OR1200_LSUOP_SH, 2'b10} : dcpu_sel_o = 4'b0011;
166
                {`OR1200_LSUOP_SW, 2'b00} : dcpu_sel_o = 4'b1111;
167
                {`OR1200_LSUOP_LBZ, 2'b00}, {`OR1200_LSUOP_LBS, 2'b00} : dcpu_sel_o = 4'b1000;
168
                {`OR1200_LSUOP_LBZ, 2'b01}, {`OR1200_LSUOP_LBS, 2'b01} : dcpu_sel_o = 4'b0100;
169
                {`OR1200_LSUOP_LBZ, 2'b10}, {`OR1200_LSUOP_LBS, 2'b10} : dcpu_sel_o = 4'b0010;
170
                {`OR1200_LSUOP_LBZ, 2'b11}, {`OR1200_LSUOP_LBS, 2'b11} : dcpu_sel_o = 4'b0001;
171
                {`OR1200_LSUOP_LHZ, 2'b00}, {`OR1200_LSUOP_LHS, 2'b00} : dcpu_sel_o = 4'b1100;
172
                {`OR1200_LSUOP_LHZ, 2'b10}, {`OR1200_LSUOP_LHS, 2'b10} : dcpu_sel_o = 4'b0011;
173
                {`OR1200_LSUOP_LWZ, 2'b00}, {`OR1200_LSUOP_LWS, 2'b00} : dcpu_sel_o = 4'b1111;
174
                default : dcpu_sel_o = 4'b0000;
175
        endcase
176
 
177
//
178
// Instantiation of Memory-to-regfile aligner
179
//
180
or1200_mem2reg or1200_mem2reg(
181
        .addr(dcpu_adr_o[1:0]),
182
        .lsu_op(lsu_op),
183
        .memdata(dcpu_dat_i),
184
        .regdata(lsu_dataout)
185
);
186
 
187
//
188
// Instantiation of Regfile-to-memory aligner
189
//
190
or1200_reg2mem or1200_reg2mem(
191
        .addr(dcpu_adr_o[1:0]),
192
        .lsu_op(lsu_op),
193
        .regdata(lsu_datain),
194
        .memdata(dcpu_dat_o)
195
);
196
 
197
endmodule

powered by: WebSVN 2.1.0

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