Skip to content

Commit 7834fc8

Browse files
committed
hpdcache: update submodule
1 parent 8bbdb0f commit 7834fc8

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.gitlab-ci/scripts/report_benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"dhrystone_single": 22256,
2424
"coremark_dual": 981777,
2525
"coremark_single": 1294524,
26-
"dhrystone_cv32a65x": 28822,
26+
"dhrystone_cv32a65x": 28823,
2727
"dhrystone_cv32a60x": 36629,
28-
}
28+
2929

3030
for arg in sys.argv[1:]:
3131
if "--dhrystone" in arg or "--coremark" in arg:

core/cache_subsystem/cva6_hpdcache_subsystem.sv

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,8 @@ module cva6_hpdcache_subsystem
211211
userCfg.mshrSetsPerRam = CVA6Cfg.NrLoadBufEntries < 16 ? 1 : CVA6Cfg.NrLoadBufEntries / 2;
212212
userCfg.mshrRamByteEnable = 1'b1;
213213
userCfg.mshrUseRegbank = (CVA6Cfg.NrLoadBufEntries < 16);
214+
/*FIXME we should add additional CVA6 config parameters (cbufEntries)*/
215+
userCfg.cbufEntries = 4;
214216
userCfg.refillCoreRspFeedthrough = 1'b1;
215217
userCfg.refillFifoDepth = 2 * (CVA6Cfg.DCACHE_LINE_WIDTH / CVA6Cfg.AxiDataWidth);
216218
userCfg.wbufDirEntries = CVA6Cfg.WtDcacheWbufDepth;
@@ -231,6 +233,7 @@ module cva6_hpdcache_subsystem
231233
userCfg.wbEn =
232234
(CVA6Cfg.DCacheType == config_pkg::HPDCACHE_WB) ||
233235
(CVA6Cfg.DCacheType == config_pkg::HPDCACHE_WT_WB);
236+
userCfg.lowLatency = 1'b1;
234237
return userCfg;
235238
endfunction
236239

core/cache_subsystem/cva6_hpdcache_subsystem_axi_arbiter.sv

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,9 @@ module cva6_hpdcache_subsystem_axi_arbiter
278278

279279
.mem_req_read_ready_i(mem_req_read_ready_arb),
280280
.mem_req_read_valid_o(mem_req_read_valid_arb),
281-
.mem_req_read_o (mem_req_read_arb)
281+
.mem_req_read_o (mem_req_read_arb),
282+
283+
.gnt_index_o()
282284
);
283285
// }}}
284286

core/cache_subsystem/hpdcache

Submodule hpdcache updated 102 files

0 commit comments

Comments
 (0)