From b18b16fd3ab22f69a27c9e993321efe1173f7e93 Mon Sep 17 00:00:00 2001 From: Lars-Peter Clausen Date: Wed, 30 May 2018 09:32:38 +0200 Subject: [PATCH] axi_dmac: Use a more descriptive label for the store-and-forward memory size The label for the store-and-forward memory size configuration option at the moment is just "FIFO Size" and while the store-and-forward memory uses a FIFO that is just a implementation detail. Change the label to "Store-and-Forward Memory Size". This is more descriptive as it references the function not the implementation. Signed-off-by: Lars-Peter Clausen --- library/axi_dmac/axi_dmac_hw.tcl | 2 +- library/axi_dmac/axi_dmac_ip.tcl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/library/axi_dmac/axi_dmac_hw.tcl b/library/axi_dmac/axi_dmac_hw.tcl index 22e98f0c0..8898796d2 100644 --- a/library/axi_dmac/axi_dmac_hw.tcl +++ b/library/axi_dmac/axi_dmac_hw.tcl @@ -67,7 +67,7 @@ set_parameter_property DMA_LENGTH_WIDTH ALLOWED_RANGES {8:32} set_parameter_property DMA_LENGTH_WIDTH GROUP $group add_parameter FIFO_SIZE INTEGER 4 -set_parameter_property FIFO_SIZE DISPLAY_NAME "FIFO Size (In Bursts)" +set_parameter_property FIFO_SIZE DISPLAY_NAME "Store-and-Forward Memory Size (In Bursts)" set_parameter_property FIFO_SIZE HDL_PARAMETER true set_parameter_property FIFO_SIZE ALLOWED_RANGES {2 4 8 16 32} set_parameter_property FIFO_SIZE GROUP $group diff --git a/library/axi_dmac/axi_dmac_ip.tcl b/library/axi_dmac/axi_dmac_ip.tcl index b63f577ca..80d36a977 100644 --- a/library/axi_dmac/axi_dmac_ip.tcl +++ b/library/axi_dmac/axi_dmac_ip.tcl @@ -318,7 +318,7 @@ set p [ipgui::get_guiparamspec -name "FIFO_SIZE" -component $cc] ipgui::move_param -component $cc -order 2 $p -parent $general_group set_property -dict [list \ "widget" "comboBox" \ - "display_name" "FIFO Size (In Bursts)" \ + "display_name" "Store-and-Forward Memory Size (In Bursts)" \ ] $p set p [ipgui::get_guiparamspec -name "MAX_BYTES_PER_BURST" -component $cc]