From 2dfd6e916d5a9d42e8f5baa610c9540716655683 Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Wed, 24 May 2023 11:57:56 +0200 Subject: [PATCH] FPGA: work completion queue is extended to 32768 elements. --- receiver/scripts/jfjoch.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/receiver/scripts/jfjoch.tcl b/receiver/scripts/jfjoch.tcl index 0b87e910..4d2abb65 100644 --- a/receiver/scripts/jfjoch.tcl +++ b/receiver/scripts/jfjoch.tcl @@ -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