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/vita/chdr_16sc_to_32f_tb.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/vita/chdr_16sc_to_32f_tb.v')
-rw-r--r-- | fpga/usrp3/lib/vita/chdr_16sc_to_32f_tb.v | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/fpga/usrp3/lib/vita/chdr_16sc_to_32f_tb.v b/fpga/usrp3/lib/vita/chdr_16sc_to_32f_tb.v new file mode 100644 index 000000000..57d1be0cc --- /dev/null +++ b/fpga/usrp3/lib/vita/chdr_16sc_to_32f_tb.v @@ -0,0 +1,145 @@ +//Purpose: to test 8 to 16 converter +`timescale 1ns/1ps + +module chdr_16sc_to_32f_tb(); + + reg clk = 0; + reg reset = 1; + //generate clock + always #10 clk = ~clk; + + initial $dumpfile("chdr_16sc_to_32f_tb.vcd"); + initial $dumpvars(0,chdr_16sc_to_32f_tb); + + + //tells when to finish + initial + begin + #50 reset = 0; + #50000; + $finish; + end + + //setting registers and wire + reg [63:0] i_tdata; + reg i_tlast = 0; + reg i_tvalid = 0; + wire i_tready ; + reg [7:0] set_addr; + reg [31:0] set_data; + reg set_stb; + + + wire [63:0] o_tdata; + wire o_tlast; + + wire o_tvalid; + reg o_tready; + + chdr_16sc_to_32f #(.BASE(89))dut + (.clk(clk), .reset(reset), + .set_data(set_data), .set_stb(set_stb), .set_addr(set_addr), + .i_tdata(i_tdata), .i_tlast(i_tlast), .i_tvalid(i_tvalid), .i_tready(i_tready), + .o_tdata(o_tdata), .o_tlast(o_tlast), .o_tvalid(o_tvalid), .o_tready(o_tready), .debug()); + + +//change [15:0] to whatever amount of samples you want to test. however float to iq was tested thouroughly independently. so it works + reg [15:0]data[0:15]; + initial $readmemh("iq_to_float_input.txt", data); + +//test packet loop + task test_packet; + input [15:0] len; + input [31:0] sid; + reg [3:0] index; + + begin + + index <= 0; + + + @(posedge clk); + //send header + i_tdata <= {1'b0, 1'b0, 1'b1, 1'b0, 12'h0, (len + 16'd16),sid}; + i_tvalid <= 1; + i_tlast <= 0; + + @(posedge clk); + while (i_tready != 1) + @(posedge clk); + i_tdata <= {64'b0}; + + @(posedge clk); + while (i_tready != 1) + @(posedge clk); + //-1 for last bit accounting + repeat (len[15:3] + (len[2]|len[1]|len[0])-1) + begin + i_tdata <= {data[index], data[index+1], data[index+2], data[index+3]}; + index <= index+4; + + @(posedge clk); + while (i_tready != 1) + @(posedge clk); + end + i_tlast <= 1'b1; + i_tdata <= {data[index], data[index+1], data[index+2], data[index+3]}; + + + @(posedge clk); + while (i_tready != 1) + @(posedge clk); + i_tvalid <= 0; + end + endtask // test_packet + +//test_destination loop + + task test_destination; + input enable; + input [15:0] dest_home; + + + begin + @(posedge clk); + + set_data <= {enable,dest_home}; + set_addr <= 89; + set_stb <= 1; + + @(posedge clk); + set_stb <= 0; + end + endtask + +//main loop + initial + begin + i_tvalid <= 0; + o_tready <= 1; + + i_tdata <= 0; + + @(negedge reset); + @(posedge clk); + @(posedge clk); + + + test_destination(1,16'hFEED); + test_packet(2, 32'hDEAD_BEEF); + + test_destination(1,16'hFEED); + test_packet(4, 32'hDEAD_BEEF); + + test_destination(1,16'hFEED); + test_packet(6, 32'hDEAD_BEEF); + + test_destination(1,16'hFEED); + test_packet(8, 32'hDEAD_BEEF); + + end + + + + +endmodule |