diff --git a/library/axi_ad9361/axi_ad9361.v b/library/axi_ad9361/axi_ad9361.v index 2ccf7d1a2..4059f990b 100755 --- a/library/axi_ad9361/axi_ad9361.v +++ b/library/axi_ad9361/axi_ad9361.v @@ -108,7 +108,6 @@ module axi_ad9361 ( // parameters parameter PCORE_ID = 0; - parameter PCORE_VERSION = 32'h00060061; parameter PCORE_BUFTYPE = 0; parameter PCORE_IODELAY_GROUP = "dev_if_delay_group"; parameter PCORE_DAC_DP_DISABLE = 0; @@ -344,7 +343,6 @@ module axi_ad9361 ( axi_ad9361_rx #( .PCORE_ID (PCORE_ID), - .PCORE_VERSION (PCORE_VERSION), .DP_DISABLE (PCORE_ADC_DP_DISABLE)) i_rx ( .adc_clk (clk), @@ -394,7 +392,6 @@ module axi_ad9361 ( axi_ad9361_tx #( .PCORE_ID (PCORE_ID), - .PCORE_VERSION (PCORE_VERSION), .DP_DISABLE (PCORE_DAC_DP_DISABLE)) i_tx ( .dac_clk (clk), diff --git a/library/axi_ad9361/axi_ad9361_rx.v b/library/axi_ad9361/axi_ad9361_rx.v index a33c9a4c2..3341799de 100755 --- a/library/axi_ad9361/axi_ad9361_rx.v +++ b/library/axi_ad9361/axi_ad9361_rx.v @@ -106,7 +106,6 @@ module axi_ad9361_rx ( parameter DP_DISABLE = 0; parameter PCORE_ID = 0; - parameter PCORE_VERSION = 32'h00060061; // adc interface @@ -664,10 +663,7 @@ module axi_ad9361_rx ( // common processor control - up_adc_common #( - .PCORE_ID (PCORE_ID), - .PCORE_VERSION (PCORE_VERSION) - ) i_up_adc_common ( + up_adc_common #(.PCORE_ID (PCORE_ID)) i_up_adc_common ( .mmcm_rst (), .adc_clk (adc_clk), .adc_rst (adc_rst), diff --git a/library/axi_ad9361/axi_ad9361_tx.v b/library/axi_ad9361/axi_ad9361_tx.v index 32d49f3e0..5eea65761 100755 --- a/library/axi_ad9361/axi_ad9361_tx.v +++ b/library/axi_ad9361/axi_ad9361_tx.v @@ -81,7 +81,6 @@ module axi_ad9361_tx ( parameter DP_DISABLE = 0; parameter PCORE_ID = 0; - parameter PCORE_VERSION = 32'h00060061; // dac interface @@ -349,10 +348,7 @@ module axi_ad9361_tx ( // dac common processor interface - up_dac_common #( - .PCORE_ID (PCORE_ID), - .PCORE_VERSION (PCORE_VERSION) - ) i_up_dac_common ( + up_dac_common #(.PCORE_ID (PCORE_ID)) i_up_dac_common ( .mmcm_rst (), .dac_clk (dac_clk), .dac_rst (dac_rst), diff --git a/library/common/up_adc_common.v b/library/common/up_adc_common.v index b21f8828a..942bce7af 100644 --- a/library/common/up_adc_common.v +++ b/library/common/up_adc_common.v @@ -102,7 +102,7 @@ module up_adc_common ( // parameters - parameter PCORE_VERSION = 32'h00040062; + localparam PCORE_VERSION = 32'h00060061; parameter PCORE_ID = 0; // clock reset diff --git a/library/common/up_axis_dma_rx.v b/library/common/up_axis_dma_rx.v index 93cb6f7ec..dea99f259 100644 --- a/library/common/up_axis_dma_rx.v +++ b/library/common/up_axis_dma_rx.v @@ -71,7 +71,7 @@ module up_axis_dma_rx ( // parameters - parameter PCORE_VERSION = 32'h00050062; + localparam PCORE_VERSION = 32'h00050062; parameter PCORE_ID = 0; // adc interface diff --git a/library/common/up_axis_dma_tx.v b/library/common/up_axis_dma_tx.v index be11e30e8..509e878fa 100644 --- a/library/common/up_axis_dma_tx.v +++ b/library/common/up_axis_dma_tx.v @@ -67,7 +67,7 @@ module up_axis_dma_tx ( // parameters - parameter PCORE_VERSION = 32'h00050062; + localparam PCORE_VERSION = 32'h00050062; parameter PCORE_ID = 0; // dac interface diff --git a/library/common/up_clkgen.v b/library/common/up_clkgen.v index 38d7bf4c6..75a44fc27 100644 --- a/library/common/up_clkgen.v +++ b/library/common/up_clkgen.v @@ -70,7 +70,7 @@ module up_clkgen ( // parameters - parameter PCORE_VERSION = 32'h00040062; + localparam PCORE_VERSION = 32'h00040062; parameter PCORE_ID = 0; // mmcm reset diff --git a/library/common/up_dac_common.v b/library/common/up_dac_common.v index 6f09de02f..bbba86edb 100644 --- a/library/common/up_dac_common.v +++ b/library/common/up_dac_common.v @@ -92,7 +92,7 @@ module up_dac_common ( // parameters - parameter PCORE_VERSION = 32'h00040062; + localparam PCORE_VERSION = 32'h00070061; parameter PCORE_ID = 0; // mmcm reset diff --git a/library/common/up_gt.v b/library/common/up_gt.v index c0c0cb032..bbbf7ef36 100644 --- a/library/common/up_gt.v +++ b/library/common/up_gt.v @@ -134,7 +134,7 @@ module up_gt ( // parameters - parameter PCORE_VERSION = 32'h00040062; + localparam PCORE_VERSION = 32'h00050062; parameter PCORE_ID = 0; // gt interface diff --git a/library/common/up_hdmi_tx.v b/library/common/up_hdmi_tx.v index a59c03412..2590b5cb0 100644 --- a/library/common/up_hdmi_tx.v +++ b/library/common/up_hdmi_tx.v @@ -84,7 +84,7 @@ module up_hdmi_tx ( // parameters - parameter PCORE_VERSION = 32'h00040062; + localparam PCORE_VERSION = 32'h00040062; parameter PCORE_ID = 0; // hdmi interface