FPGA: work completion queue is extended to 32768 elements.

This commit is contained in:
2023-05-24 11:57:56 +02:00
parent c2b42916c2
commit 2dfd6e916d

View File

@@ -275,8 +275,8 @@ proc create_hier_cell_jungfraujoch { parentCell nameHier } {
# Create instance: axis_work_completion_fifo_0, and set properties
set axis_work_completion_fifo_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:axis_data_fifo:2.0 axis_work_completion_fifo_0 ]
set_property -dict [ list \
CONFIG.FIFO_DEPTH {1024} \
CONFIG.FIFO_MEMORY_TYPE {auto} \
CONFIG.FIFO_DEPTH {32768} \
CONFIG.FIFO_MEMORY_TYPE {ultra} \
CONFIG.HAS_AEMPTY {1} \
CONFIG.HAS_AFULL {1} \
] $axis_work_completion_fifo_0