Commit c3417443 authored by Lucas Russo's avatar Lucas Russo

top/*/dbe_bpm{2}/*: add DISTRIBUTED RAM STYLE to fmc_adc_data FIFO

This will force the synthesis tool to use
distributed RAM style, which will possibly
improve timing for this small FIFO.
parent c7570a95
......@@ -1052,6 +1052,9 @@ set_max_delay -datapath_only -from [get_pins -hier -filter {NAME =~ *acq_core/*/
# whole topology
set_property RAM_STYLE DISTRIBUTED [get_cells -hier -filter {NAME =~ */cmp_position_calc_cdc_fifo/mem_reg*}]
# Use Distributed RAMs for FMC ADC CDC FIFOs. They are small and sparse.
set_property RAM_STYLE DISTRIBUTED [get_cells -hier -filter {NAME =~ */cmp_fmc_adc_iface/*/cmp_adc_data_async_fifo/mem_reg*}]
#######################################################################
## Placement Constraints ##
......
......@@ -1217,6 +1217,9 @@ set_max_delay -datapath_only -from [get_pins -hier -filter {NAME =~ *acq_core/*/
# whole topology
set_property RAM_STYLE DISTRIBUTED [get_cells -hier -filter {NAME =~ */cmp_position_calc_cdc_fifo/mem_reg*}]
# Use Distributed RAMs for FMC ADC CDC FIFOs. They are small and sparse.
set_property RAM_STYLE DISTRIBUTED [get_cells -hier -filter {NAME =~ */cmp_fmc_adc_iface/*/cmp_adc_data_async_fifo/mem_reg*}]
#######################################################################
## Placement Constraints ##
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment