Skip to content

Commit

Permalink
testbench: Increase DMA memory transactions to avoid DMA deadlock (pu…
Browse files Browse the repository at this point in the history
  • Loading branch information
huettern committed Apr 28, 2021
1 parent ed13f19 commit bdd4507
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion target/common/test/tb_memory_axi.sv
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ module tb_memory_axi #(
.DATA_WIDTH ( AxiDataWidth ),
.ID_WIDTH ( AxiIdWidth ),
.USER_WIDTH ( AxiUserWidth ),
.DECOUPLE_W ( 1 )
.DECOUPLE_W ( 1 ),
.AXI_MAX_WRITE_TXNS ( 32'd4 ),
.AXI_MAX_READ_TXNS ( 32'd4 )
) i_axi_to_reg (
.clk_i,
.rst_ni,
Expand Down

0 comments on commit bdd4507

Please sign in to comment.