diff options
author | Ben Hilburn <ben.hilburn@ettus.com> | 2013-10-10 10:17:27 -0700 |
---|---|---|
committer | Ben Hilburn <ben.hilburn@ettus.com> | 2013-10-10 10:17:27 -0700 |
commit | 0df4b801a34697f2058b4a7b95e08d2a0576c9db (patch) | |
tree | be10e78d1a97c037a9e7492360a178d1873b9c09 /fpga/usrp3/lib/packet_proc/cvita_insert_tlast.v | |
parent | 6e7bc850b66e8188718248b76b729c7cf9c89700 (diff) | |
download | uhd-0df4b801a34697f2058b4a7b95e08d2a0576c9db.tar.gz uhd-0df4b801a34697f2058b4a7b95e08d2a0576c9db.tar.bz2 uhd-0df4b801a34697f2058b4a7b95e08d2a0576c9db.zip |
Squashed B200 FPGA Source. Code from Josh Blum, Ian Buckley, and Matt Ettus.
Diffstat (limited to 'fpga/usrp3/lib/packet_proc/cvita_insert_tlast.v')
-rw-r--r-- | fpga/usrp3/lib/packet_proc/cvita_insert_tlast.v | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/fpga/usrp3/lib/packet_proc/cvita_insert_tlast.v b/fpga/usrp3/lib/packet_proc/cvita_insert_tlast.v new file mode 100644 index 000000000..8d5c4f981 --- /dev/null +++ b/fpga/usrp3/lib/packet_proc/cvita_insert_tlast.v @@ -0,0 +1,33 @@ + +// Insert tlast bit for fifos that don't support it. This only works with VALID CVITA frames +// A single partial or invalid frame will make this wrong FOREVER + +module cvita_insert_tlast + (input clk, input reset, input clear, + input [63:0] i_tdata, input i_tvalid, output i_tready, + output [63:0] o_tdata, output o_tlast, output o_tvalid, input o_tready); + + assign o_tdata = i_tdata; + assign o_tvalid = i_tvalid; + assign i_tready = o_tready; + + wire [15:0] cvita_len_ceil = i_tdata[47:32] + 7; + wire [15:0] axi_len = {3'b000, cvita_len_ceil[15:3]}; + + reg [15:0] count; + + assign o_tlast = (count != 0) ? (count == 16'd1) : (axi_len == 16'd1); + + always @(posedge clk) + if(reset | clear) + begin + count <= 16'd0; + end + else + if(i_tready & i_tvalid) + if(count != 16'd0) + count <= count - 16'd1; + else + count <= axi_len - 16'd1; + +endmodule // cvita_insert_tlast |