aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp3
diff options
context:
space:
mode:
authormichael-west <michael.west@ettus.com>2021-08-03 11:42:35 -0700
committerAaron Rossetto <aaron.rossetto@ni.com>2021-08-10 15:19:32 -0500
commit439770b964be45e6160cf99a0b1551fdd2002fa9 (patch)
tree047c20f10b38da10523cfda8122e634b655aa264 /fpga/usrp3
parenta69e6fcdc79dfa1ea48c99092b6edb9633b6fb24 (diff)
downloaduhd-439770b964be45e6160cf99a0b1551fdd2002fa9.tar.gz
uhd-439770b964be45e6160cf99a0b1551fdd2002fa9.tar.bz2
uhd-439770b964be45e6160cf99a0b1551fdd2002fa9.zip
sim: Update chdr_16sc_to_sc12 testbench
Modified to send 2 packets back to back at each packet size to test output during sequential input packets. Also fixed whitespace. Signed-off-by: michael-west <michael.west@ettus.com>
Diffstat (limited to 'fpga/usrp3')
-rw-r--r--fpga/usrp3/lib/vita_200/chdr_16sc_to_12sc_tb.v296
1 files changed, 159 insertions, 137 deletions
diff --git a/fpga/usrp3/lib/vita_200/chdr_16sc_to_12sc_tb.v b/fpga/usrp3/lib/vita_200/chdr_16sc_to_12sc_tb.v
index 607bc448a..a1fa611aa 100644
--- a/fpga/usrp3/lib/vita_200/chdr_16sc_to_12sc_tb.v
+++ b/fpga/usrp3/lib/vita_200/chdr_16sc_to_12sc_tb.v
@@ -8,163 +8,185 @@
module chdr_16sc_to_12sc_tb();
- reg clk = 0;
- reg reset = 1;
- //generate clock
- always #10 clk = ~clk;
+ reg clk = 0;
+ reg reset = 1;
+ //generate clock
+ always #10 clk = ~clk;
- initial $dumpfile("chdr_16sc_to_12sc_tb.vcd");
- initial $dumpvars(0,chdr_16sc_to_12sc_tb);
+ initial $dumpfile("chdr_16sc_to_12sc_tb.vcd");
+ initial $dumpvars(0,chdr_16sc_to_12sc_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;
+ //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 [63:0] o_tdata;
+ wire o_tlast;
- wire o_tvalid;
- reg o_tready;
-
- chdr_16sc_to_12sc #(.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());
+ wire o_tvalid;
+ reg o_tready;
+
+ chdr_16sc_to_12sc #(.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());
- //if you want to feed a bigger input change array sizes here
+ //if you want to feed a bigger input change array sizes here
- reg [63:0] data[0:7];
- initial $readmemh("from16_to_x.hex", data);
+ reg [63:0] data[0:7];
+ initial $readmemh("from16_to_x.hex", data);
- //test packet loop
- task test_packet;
- input [15:0] len;
- input [31:0] sid;
- reg [1:0] index;
+ //test packets loop
+ task test_packets;
+ input [15:0] len;
+ input [31:0] sid;
+ reg [1: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]};
- index <= index+1;
- //while (i_tready != 1)
- //@(posedge clk);
- @(posedge clk);
- while (i_tready != 1)
- @(posedge clk);
-
- end
- i_tlast <= 1'b1;
- i_tdata <= {data[index]};
-
- @(posedge clk);
- while (i_tready != 1)
- @(posedge clk);
+ begin
+ index <= 0;
+ //first packet
+ @(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);
- i_tvalid <= 0;
+ //-1 for last bit accounting
+ repeat (len[15:3] + (len[2]|len[1]|len[0]) - 1)
+ begin
+ i_tdata <= {data[index]};
+ index <= index+1;
+ @(posedge clk);
+ while (i_tready != 1)
+ @(posedge clk);
end
- endtask // test_packet
+ i_tlast <= 1'b1;
+ i_tdata <= {data[index]};
- //test_destination loop
-
- task test_destination;
- input enable;
- input [15:0] dest_home;
-
-
+ @(posedge clk);
+
+ // second packet
+ index <= 0;
+ //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
- @(posedge clk);
-
- set_data <= {enable,dest_home};
- set_addr <= 89;
- set_stb <= 1;
-
- @(posedge clk);
- set_stb <= 0;
+ i_tdata <= {data[index]};
+ index <= index+1;
+ @(posedge clk);
+ while (i_tready != 1)
+ @(posedge clk);
end
- endtask
+ i_tlast <= 1'b1;
+ i_tdata <= {data[index]};
+ @(posedge clk);
+
+ while (i_tready != 1)
+ @(posedge clk);
+
+ i_tvalid <= 0;
+ i_tlast <= 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;
-
-
- //main loop
- initial
- begin
- i_tvalid <= 0;
- o_tready <= 1;
-
- i_tdata <= 0;
-
- @(negedge reset);
- @(posedge clk);
- @(posedge clk);
-
-//end on line one
-//1
- test_destination(1,16'hFEED);
- test_packet(4, 32'hDEAD_BEEF);
-//2
- test_destination(1,16'hFEED);
- test_packet(8, 32'hDEAD_BEEF);
-//3
- test_destination(1,16'hFEED);
- test_packet(12, 32'hDEAD_BEEF);
-//4
-
- test_destination(1,16'hFEED);
- test_packet(16, 32'hDEAD_BEEF);
-//5
- test_destination(1,16'hFEED);
- test_packet(20, 32'hDEAD_BEEF);
-//6
- test_destination(1,16'hFEED);
- test_packet(24, 32'hDEAD_BEEF);
-
-//end on line two
-
-//7
-
- test_destination(1,16'hFEED);
- test_packet(28, 32'hDEAD_BEEF);
-//8
-
- test_destination(1,16'hFEED);
- test_packet(32, 32'hDEAD_BEEF);
+ i_tdata <= 0;
+ @(negedge reset);
+ @(posedge clk);
+ @(posedge clk);
+
+ //Set SID
+ test_destination(1,16'hFEED);
+
+ //1 sample
+ test_destination(1,16'h1111);
+ test_packets(4, 32'hDEAD_BEEF);
+
+ //2 samples
+ test_destination(1,16'h2222);
+ test_packets(8, 32'hDEAD_BEEF);
+
+ //3 samples
+ test_destination(1,16'h3333);
+ test_packets(12, 32'hDEAD_BEEF);
+
+ //4 samples
+ test_destination(1,16'h4444);
+ test_packets(16, 32'hDEAD_BEEF);
+
+ //5 samples
+ test_destination(1,16'h5555);
+ test_packets(20, 32'hDEAD_BEEF);
+
+ //6 samples
+ test_destination(1,16'h6666);
+ test_packets(24, 32'hDEAD_BEEF);
- end
+ //7 samples
+ test_destination(1,16'h7777);
+ test_packets(28, 32'hDEAD_BEEF);
+ //8 samples
+ test_destination(1,16'h8888);
+ test_packets(32, 32'hDEAD_BEEF);
+ end
endmodule