lkg build rollout with 16cores optimization on arria10
This commit is contained in:
40
hw/rtl/cache/VX_flush_ctrl.v
vendored
Normal file
40
hw/rtl/cache/VX_flush_ctrl.v
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
`include "VX_cache_config.vh"
|
||||
|
||||
module VX_flush_ctrl #(
|
||||
// Size of cache in bytes
|
||||
parameter CACHE_SIZE = 16384,
|
||||
// Size of line inside a bank in bytes
|
||||
parameter CACHE_LINE_SIZE = 1,
|
||||
// Number of banks
|
||||
parameter NUM_BANKS = 1,
|
||||
// Size of a word in bytes
|
||||
parameter WORD_SIZE = 1
|
||||
) (
|
||||
input wire clk,
|
||||
input wire reset,
|
||||
input wire flush,
|
||||
output wire [`LINE_ADDR_WIDTH-1:0] addr,
|
||||
input wire ready_out,
|
||||
output wire valid_out
|
||||
);
|
||||
reg flush_enable;
|
||||
reg [`LINE_SELECT_BITS-1:0] flush_ctr;
|
||||
|
||||
always @(posedge clk) begin
|
||||
if (reset || flush) begin
|
||||
flush_enable <= 1;
|
||||
flush_ctr <= 0;
|
||||
end else begin
|
||||
if (flush_enable && ready_out) begin
|
||||
if (flush_ctr == ((2 ** `LINE_SELECT_BITS)-1)) begin
|
||||
flush_enable <= 0;
|
||||
end
|
||||
flush_ctr <= flush_ctr + 1;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
assign addr = `LINE_ADDR_WIDTH'(flush_ctr);
|
||||
assign valid_out = flush_enable;
|
||||
|
||||
endmodule
|
||||
Reference in New Issue
Block a user