1 |
2 |
alfik |
/*
|
2 |
|
|
* Copyright (c) 2014, Aleksander Osman
|
3 |
|
|
* All rights reserved.
|
4 |
|
|
*
|
5 |
|
|
* Redistribution and use in source and binary forms, with or without
|
6 |
|
|
* modification, are permitted provided that the following conditions are met:
|
7 |
|
|
*
|
8 |
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
9 |
|
|
* list of conditions and the following disclaimer.
|
10 |
|
|
*
|
11 |
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
12 |
|
|
* this list of conditions and the following disclaimer in the documentation
|
13 |
|
|
* and/or other materials provided with the distribution.
|
14 |
|
|
*
|
15 |
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
16 |
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
17 |
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
18 |
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
19 |
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
20 |
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
21 |
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
22 |
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
23 |
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
24 |
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25 |
|
|
*/
|
26 |
|
|
|
27 |
|
|
`include "defines.v"
|
28 |
|
|
|
29 |
|
|
//TYPE: full save
|
30 |
|
|
|
31 |
|
|
module link_dcacheread(
|
32 |
|
|
input clk,
|
33 |
|
|
input rst_n,
|
34 |
|
|
|
35 |
|
|
// dcacheread REQ
|
36 |
|
|
input req_dcacheread_do,
|
37 |
|
|
output req_dcacheread_done,
|
38 |
|
|
|
39 |
|
|
input [3:0] req_dcacheread_length,
|
40 |
|
|
input req_dcacheread_cache_disable,
|
41 |
|
|
input [31:0] req_dcacheread_address,
|
42 |
|
|
output [63:0] req_dcacheread_data,
|
43 |
|
|
|
44 |
|
|
// dcacheread RESP
|
45 |
|
|
output resp_dcacheread_do,
|
46 |
|
|
input resp_dcacheread_done,
|
47 |
|
|
|
48 |
|
|
output [3:0] resp_dcacheread_length,
|
49 |
|
|
output resp_dcacheread_cache_disable,
|
50 |
|
|
output [31:0] resp_dcacheread_address,
|
51 |
|
|
input [63:0] resp_dcacheread_data
|
52 |
|
|
);
|
53 |
|
|
|
54 |
|
|
//------------------------------------------------------------------------------
|
55 |
|
|
|
56 |
|
|
reg current_do;
|
57 |
|
|
reg [3:0] length;
|
58 |
|
|
reg cache_disable;
|
59 |
|
|
reg [31:0] address;
|
60 |
|
|
|
61 |
|
|
//------------------------------------------------------------------------------
|
62 |
|
|
|
63 |
|
|
wire save;
|
64 |
|
|
|
65 |
|
|
//------------------------------------------------------------------------------
|
66 |
|
|
|
67 |
|
|
assign save = req_dcacheread_do && ~(resp_dcacheread_done);
|
68 |
|
|
|
69 |
|
|
//------------------------------------------------------------------------------
|
70 |
|
|
|
71 |
|
|
always @(posedge clk or negedge rst_n) begin
|
72 |
|
|
if(rst_n == 1'b0) current_do <= `FALSE;
|
73 |
|
|
else if(save) current_do <= req_dcacheread_do;
|
74 |
|
|
else if(resp_dcacheread_done) current_do <= `FALSE;
|
75 |
|
|
end
|
76 |
|
|
|
77 |
|
|
always @(posedge clk or negedge rst_n) begin if(rst_n == 1'b0) length <= 4'd0; else if(save) length <= req_dcacheread_length; end
|
78 |
|
|
always @(posedge clk or negedge rst_n) begin if(rst_n == 1'b0) cache_disable <= 1'b0; else if(save) cache_disable <= req_dcacheread_cache_disable; end
|
79 |
|
|
always @(posedge clk or negedge rst_n) begin if(rst_n == 1'b0) address <= 32'd0; else if(save) address <= req_dcacheread_address; end
|
80 |
|
|
|
81 |
|
|
//------------------------------------------------------------------------------
|
82 |
|
|
|
83 |
|
|
assign req_dcacheread_done = resp_dcacheread_done;
|
84 |
|
|
assign req_dcacheread_data = resp_dcacheread_data;
|
85 |
|
|
|
86 |
|
|
assign resp_dcacheread_do = (req_dcacheread_do)? req_dcacheread_do : current_do;
|
87 |
|
|
assign resp_dcacheread_length = (req_dcacheread_do)? req_dcacheread_length : length;
|
88 |
|
|
assign resp_dcacheread_cache_disable = (req_dcacheread_do)? req_dcacheread_cache_disable : cache_disable;
|
89 |
|
|
assign resp_dcacheread_address = (req_dcacheread_do)? req_dcacheread_address : address;
|
90 |
|
|
|
91 |
|
|
//------------------------------------------------------------------------------
|
92 |
|
|
|
93 |
|
|
//------------------------------------------------------------------------------
|
94 |
|
|
|
95 |
|
|
//------------------------------------------------------------------------------
|
96 |
|
|
|
97 |
|
|
endmodule
|