From 0dff824b1dd1743c06b60f8aef06877cd05b76b1 Mon Sep 17 00:00:00 2001 From: Michael Rogenmoser Date: Tue, 12 Mar 2024 14:38:04 +0100 Subject: [PATCH] Add new icache parameters --- hw/snitch_cluster/src/snitch_hive.sv | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hw/snitch_cluster/src/snitch_hive.sv b/hw/snitch_cluster/src/snitch_hive.sv index c9f284769f..fbb5f6910c 100644 --- a/hw/snitch_cluster/src/snitch_hive.sv +++ b/hw/snitch_cluster/src/snitch_hive.sv @@ -92,7 +92,10 @@ module snitch_hive #( .FETCH_DW ( 32 ), .FILL_AW ( AddrWidth ), .FILL_DW ( WideDataWidth ), - .EARLY_LATCH ( 0 ), + .SERIAL_LOOKUP ( 0 ), + .L1_TAG_SCM ( 0 ), + .NUM_AXI_OUTSTANDING( 2 ), + .EARLY_LATCH ( 0 ), .L0_EARLY_TAG_WIDTH ( snitch_pkg::PageShift - $clog2(ICacheLineWidth/8) ), .ISO_CROSSING ( IsoCrossing ), .sram_cfg_tag_t ( sram_cfg_t ),