From 498ef7079b7a31ba28dcaf31801f1818382d9009 Mon Sep 17 00:00:00 2001 From: Alessandro Ottaviano Date: Wed, 27 Sep 2023 16:13:37 +0200 Subject: [PATCH] hw: Tune outstanding transaction count for iDMA UNBENT (#80) --- hw/cheshire_soc.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/cheshire_soc.sv b/hw/cheshire_soc.sv index ba1516a5..52ba477a 100644 --- a/hw/cheshire_soc.sv +++ b/hw/cheshire_soc.sv @@ -1449,7 +1449,7 @@ module cheshire_soc import cheshire_pkg::*; #( .IdWidth ( Cfg.AxiMstIdWidth ), .UserErrBits ( Cfg.AxiUserErrBits ), .UserErrBitsOffset ( Cfg.AxiUserErrLsb ), - .NumOutstanding ( Cfg.CoreMaxTxns ), + .NumOutstanding ( Cfg.DmaNumAxInFlight+Cfg.DmaJobFifoDepth ), .NumStoredErrors ( 4 ), .DropOldest ( 1'b0 ), .axi_req_t ( axi_mst_req_t ),