WARNING:EDK:4083 - IPNAME: axi_vdma, INSTANCE: axi_vdma_0 - PARAMETER: C_INTERCONNECT_M_AXI_MM2S_READ_FIFO_DEPTH has value 32 specified in MHS, but tcl is overriding the value to 0 WARNING:EDK:4083 - IPNAME: axi_vdma, INSTANCE: axi_vdma_0 - PARAMETER: C_INTERCONNECT_M_AXI_S2MM_WRITE_FIFO_DEPTH has value 512 specified in MHS, but tcl is overriding the value to 0
## This procedure sets the mm2s fifo depth to 512 if store and forward is turned off. ## users can overide this by explicitly setting fifo depth in the system.mhs proc iplevel_update_mm2s_fifo_depth {param_handle} { set mhsinst [xget_hw_parent_handle $param_handle] set sf_included [xget_hw_parameter_value $mhsinst "C_INCLUDE_MM2S_SF"] if {$sf_included == 0} { return 512 } else { return X <= X should be replaced with the read FIFO depth desired (0, 32 or 512) } }
## This procedure sets the s2mm fifo depth to 512 if store and forward is turned off. ## users can overide this by explicitly setting fifo depth in the system.mhs proc iplevel_update_s2mm_fifo_depth {param_handle} { set mhsinst [xget_hw_parent_handle $param_handle] set sf_included [xget_hw_parameter_value $mhsinst "C_INCLUDE_S2MM_SF"] if {$sf_included == 0} { return 512 } else { return X <= X should be replaced with the write FIFO depth desired(0, 32 or 512) } }