diff options
author | Wade Fife <wade.fife@ettus.com> | 2021-12-06 11:54:36 -0600 |
---|---|---|
committer | Wade Fife <wade.fife@ettus.com> | 2021-12-08 08:36:46 -0600 |
commit | 270a7e13c365d05ba04ab44a2f844d96ba15f43b (patch) | |
tree | b42935844186e0cb0769e87ba2f9d7f0e7fb4e0a /fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio | |
parent | f23ab72129041777bcd3357a1f4e37b29e62dd86 (diff) | |
download | uhd-270a7e13c365d05ba04ab44a2f844d96ba15f43b.tar.gz uhd-270a7e13c365d05ba04ab44a2f844d96ba15f43b.tar.bz2 uhd-270a7e13c365d05ba04ab44a2f844d96ba15f43b.zip |
rfnoc: Fix noc_shell direction comments
Some comments describing data flow direction were wrong. This commit
updates the Mako files and updates the noc_shell modules with newly
generated versions.
Diffstat (limited to 'fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio')
-rw-r--r-- | fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio/noc_shell_radio.v | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio/noc_shell_radio.v b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio/noc_shell_radio.v index faf58840f..5909e0e39 100644 --- a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio/noc_shell_radio.v +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_radio/noc_shell_radio.v @@ -1,11 +1,11 @@ // -// Copyright 2019 Ettus Research, A National Instruments Brand +// Copyright 2021 Ettus Research, a National Instruments Brand // // SPDX-License-Identifier: LGPL-3.0-or-later // // Module: noc_shell_radio // -// Description: +// Description: // // This is a tool-generated NoC-shell for the radio block. // See the RFNoC specification for more information about NoC shells. @@ -115,7 +115,7 @@ module noc_shell_radio #( output wire [NUM_PORTS*16-1:0] m_in_axis_tlength, output wire [NUM_PORTS-1:0] m_in_axis_teov, output wire [NUM_PORTS-1:0] m_in_axis_teob, - // Data Stream to User Logic: out + // Data Stream from User Logic: out input wire [NUM_PORTS*ITEM_W*NIPC-1:0] s_out_axis_tdata, input wire [NUM_PORTS*NIPC-1:0] s_out_axis_tkeep, input wire [NUM_PORTS-1:0] s_out_axis_tlast, @@ -238,7 +238,7 @@ module noc_shell_radio #( assign axis_data_clk = radio_clk; assign axis_data_rst = radio_rst; - + //--------------------- // Input Data Paths //--------------------- @@ -267,7 +267,7 @@ module noc_shell_radio #( .m_axis_tready (m_in_axis_tready[i]), .m_axis_ttimestamp (m_in_axis_ttimestamp[64*i+:64]), .m_axis_thas_time (m_in_axis_thas_time[i]), - .m_axis_tlength (m_in_axis_tlength[i*16+:16]), + .m_axis_tlength (m_in_axis_tlength[16*i+:16]), .m_axis_teov (m_in_axis_teov[i]), .m_axis_teob (m_in_axis_teob[i]), .flush_en (data_i_flush_en), @@ -283,13 +283,14 @@ module noc_shell_radio #( for (i = 0; i < NUM_PORTS; i = i + 1) begin: gen_output_out axis_data_to_chdr #( - .CHDR_W (CHDR_W), - .ITEM_W (ITEM_W), - .NIPC (NIPC), - .SYNC_CLKS (0), - .INFO_FIFO_SIZE ($clog2(32)), - .PYLD_FIFO_SIZE ($clog2(MTU)), - .MTU (MTU) + .CHDR_W (CHDR_W), + .ITEM_W (ITEM_W), + .NIPC (NIPC), + .SYNC_CLKS (0), + .INFO_FIFO_SIZE ($clog2(32)), + .PYLD_FIFO_SIZE ($clog2(MTU)), + .MTU (MTU), + .SIDEBAND_AT_END (1) ) axis_data_to_chdr_out_out ( .axis_chdr_clk (rfnoc_chdr_clk), .axis_chdr_rst (rfnoc_chdr_rst), @@ -306,6 +307,7 @@ module noc_shell_radio #( .s_axis_tready (s_out_axis_tready[i]), .s_axis_ttimestamp (s_out_axis_ttimestamp[64*i+:64]), .s_axis_thas_time (s_out_axis_thas_time[i]), + .s_axis_tlength (16'd0), .s_axis_teov (s_out_axis_teov[i]), .s_axis_teob (s_out_axis_teob[i]), .flush_en (data_o_flush_en), |