Skip to content
Snippets Groups Projects
Commit 7770f733 authored by Alban Gruin's avatar Alban Gruin
Browse files

ariane_pkg: reduce queues size


Signed-off-by: default avatarAlban Gruin <alban.gruin@irit.fr>
parent 21c907cb
No related branches found
No related tags found
No related merge requests found
Pipeline #459 failed
......@@ -128,7 +128,7 @@ package ariane_pkg;
endfunction : is_inside_cacheable_regions
// TODO: Slowly move those parameters to the new system.
localparam NR_SB_ENTRIES = 8; // number of scoreboard entries
localparam NR_SB_ENTRIES = 2; // number of scoreboard entries
localparam TRANS_ID_BITS = $clog2(NR_SB_ENTRIES); // depending on the number of scoreboard entries we need that many bits
// to uniquely identify the entry in the scoreboard
localparam ASID_WIDTH = (riscv::XLEN == 64) ? 16 : 1;
......
......@@ -695,7 +695,7 @@ module ariane import ariane_pkg::*; #(
.icache_areq_o ( icache_areq_cache_ex ),
.icache_dreq_i ( icache_dreq_if_cache ),
.icache_dreq_o ( icache_dreq_cache_if ),
.icache_stall_i ( icache_stall_ctrl ),
.icache_stall_i ( 1'b0 ),
// D$
.dcache_enable_i ( dcache_en_csr_nbdcache ),
.dcache_flush_i ( dcache_flush_ctrl_cache ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment