diff options
Diffstat (limited to 'fpga/usrp2/udp')
| -rw-r--r-- | fpga/usrp2/udp/Makefile.srcs | 13 | ||||
| -rw-r--r-- | fpga/usrp2/udp/add_onescomp.v | 12 | ||||
| -rw-r--r-- | fpga/usrp2/udp/fifo19_rxrealign.v | 42 | ||||
| -rw-r--r-- | fpga/usrp2/udp/prot_eng_rx.v | 121 | ||||
| -rw-r--r-- | fpga/usrp2/udp/prot_eng_tx.v | 146 | ||||
| -rw-r--r-- | fpga/usrp2/udp/prot_eng_tx_tb.v | 174 | ||||
| -rw-r--r-- | fpga/usrp2/udp/udp_wrapper.v | 92 | 
7 files changed, 600 insertions, 0 deletions
| diff --git a/fpga/usrp2/udp/Makefile.srcs b/fpga/usrp2/udp/Makefile.srcs new file mode 100644 index 000000000..293094abe --- /dev/null +++ b/fpga/usrp2/udp/Makefile.srcs @@ -0,0 +1,13 @@ +# +# Copyright 2010 Ettus Research LLC +# + +################################################## +# UDP Sources +################################################## +UDP_SRCS = $(abspath $(addprefix $(BASE_DIR)/../udp/, \ +udp_wrapper.v \ +fifo19_rxrealign.v \ +prot_eng_tx.v \ +add_onescomp.v \ +)) diff --git a/fpga/usrp2/udp/add_onescomp.v b/fpga/usrp2/udp/add_onescomp.v new file mode 100644 index 000000000..048842a86 --- /dev/null +++ b/fpga/usrp2/udp/add_onescomp.v @@ -0,0 +1,12 @@ + + +module add_onescomp +  #(parameter WIDTH = 16) +   (input [WIDTH-1:0] A, +    input [WIDTH-1:0] B, +    output [WIDTH-1:0] SUM); + +   wire [WIDTH:0] SUM_INT = {1'b0,A} + {1'b0,B}; +   assign SUM  = SUM_INT[WIDTH-1:0] + {{WIDTH-1{1'b0}},SUM_INT[WIDTH]}; +    +endmodule // add_onescomp diff --git a/fpga/usrp2/udp/fifo19_rxrealign.v b/fpga/usrp2/udp/fifo19_rxrealign.v new file mode 100644 index 000000000..35ad90951 --- /dev/null +++ b/fpga/usrp2/udp/fifo19_rxrealign.v @@ -0,0 +1,42 @@ + + +//  Adds a junk line at the beginning of every packet, which the +//   following stages should ignore.  This gives us proper alignment due +//   to the 14 byte ethernet header + +// Bit 18 -- odd length +// Bit 17 -- eof +// Bit 16 -- sof +// Bit 15:0 -- data + +module fifo19_rxrealign +  (input clk, input reset, input clear, +   input [18:0] datain, input src_rdy_i, output dst_rdy_o, +   output [18:0] dataout, output src_rdy_o, input dst_rdy_i); +    +   reg 	rxre_state; +   localparam RXRE_DUMMY  = 0; +   localparam RXRE_PKT 	  = 1; +    +   assign dataout[18] 	  = datain[18]; +   assign dataout[17] 	  = datain[17]; +   assign dataout[16] 	  = (rxre_state==RXRE_DUMMY) | (datain[17] & datain[16]);  // allows for passing error signal +   assign dataout[15:0] = datain[15:0]; +    +   always @(posedge clk) +     if(reset | clear) +       rxre_state <= RXRE_DUMMY; +     else if(src_rdy_i & dst_rdy_i) +       case(rxre_state) +	 RXRE_DUMMY : +	   rxre_state <= RXRE_PKT; +	 RXRE_PKT : +	   if(datain[17])   // if eof or error +	     rxre_state <= RXRE_DUMMY; +       endcase // case (rxre_state) + +   assign src_rdy_o 	 = src_rdy_i & dst_rdy_i;   // Send anytime both sides are ready +   assign dst_rdy_o = src_rdy_i & dst_rdy_i & (rxre_state == RXRE_PKT);  // Only consume after the dummy +    +endmodule // fifo19_rxrealign + diff --git a/fpga/usrp2/udp/prot_eng_rx.v b/fpga/usrp2/udp/prot_eng_rx.v new file mode 100644 index 000000000..5df158b2b --- /dev/null +++ b/fpga/usrp2/udp/prot_eng_rx.v @@ -0,0 +1,121 @@ + + + +// Protocol Engine Receiver +//  Checks each line (16 bits) against values in setting regs +//  3 options for each line --  +//      Error if mismatch, Slowpath if mismatch, or ignore line +//  The engine increases the length of each packet by 32 or 48 bits, +//   bringing the total length to a multiple of 32 bits.  The last line +//   is entirely new, and contains the results of the matching operation: +//      16 bits of flags, 16 bits of data.  Flags indicate error or slowpath +//      Data indicates line that caused mismatch if any. + + +//   Flags[2:0] is {occ, eop, sop} +//   Protocol word format is: +//             22   Last Header Line +//             21   SLOWPATH if mismatch +//             20   ERROR if mismatch +//             19   This is the IP checksum +//             18   This is the UDP checksum +//             17   Compute IP checksum on this word +//             16   Compute UDP checksum on this word +//           15:0   data word to be matched + +module prot_eng_rx +  #(parameter BASE=0) +   (input clk, input reset, input clear, +    input set_stb, input [7:0] set_addr, input [31:0] set_data, +    input [18:0] datain, input src_rdy_i, output dst_rdy_o, +    output [18:0] dataout, output src_rdy_o, input dst_rdy_i); + +   localparam HDR_WIDTH  = 16 + 7;  // 16 bits plus flags +   localparam HDR_LEN 	 = 32;      // Up to 64 bytes of protocol +    +   // Store header values in a small dual-port (distributed) ram +   reg [HDR_WIDTH-1:0] header_ram[0:HDR_LEN-1]; +   wire [HDR_WIDTH-1:0] header_word; +    +   always @(posedge clk) +     if(set_stb & ((set_addr & 8'hE0) == BASE)) +       header_ram[set_addr[4:0]] <= set_data; + +   assign header_word 	= header_ram[state]; + +   wire consume_input 	= src_rdy_i & dst_rdy_o; +   wire produce_output 	= src_rdy_o & dst_rdy_i; +    +   // Main State Machine +   reg [15:0] pkt_length, fail_word, dataout_int; +    +   reg slowpath, error, sof_o, eof_o, occ_o, odd; + +   assign dataout    = {occ_o, eof_o, sof_o, dataout_int}; + +   wire [15:0] calc_ip_checksum, calc_udp_checksum; +   reg [15:0] rx_ip_checksum, rx_udp_checksum; + +   always @(posedge clk)  +     if(header_word[19])  +       rx_ip_checksum  <= datain[15:0]; +   always @(posedge clk)  +     if(header_word[18])  +       rx_udp_checksum <= datain[15:0]; +    +   always @(posedge clk) +     if(reset | clear) +       begin +	  slowpath     <= 0; +	  error        <= 0; +	  state        <= 0; +	  fail_word    <= 0; +	  eof_o        <= 0; +	  occ_o        <= 0; +       end +     else if(src_rdy_i & dst_rdy_i) +       case (state) +	 0 : +	   begin +	      slowpath 	   <= 0; +	      error 	   <= 0; +	      eof_o 	   <= 0; +	      occ_o 	   <= 0; +	      state 	   <= 1; +	   end + +	 ST_SLOWPATH : +	   ; +	 ST_ERROR : +	   ; +	 ST_PAYLOAD : +	   ; +	 ST_FILLER : +	   ; +	 ST_END1 : +	   ; +	 ST_END2 : +	   ; +	 default : +	   if(header_word[21] && mismatch) +	     state <= ST_SLOWPATH; +	   else if(header_word[20] && mismatch) +	     state <= ST_ERROR; +	   else if(header_word[22]) +	     state <= ST_PAYLOAD; +	   else +	     state <= state + 1; +       endcase // case (state) +    + + +   // IP + UDP checksum state machines +   checksum_sm ip_chk +     (.clk(clk), .reset(reset), .in(datain),  +      .calc(consume_input & header_word[17]), .clear(state==0), .checksum(ip_checksum)); +    +   checksum_sm udp_chk +     (.clk(clk), .reset(reset), .in(datain),  +      .calc(consume_input & header_word[16]), .clear(state==0), .checksum(udp_checksum)); +    +endmodule // prot_eng_rx diff --git a/fpga/usrp2/udp/prot_eng_tx.v b/fpga/usrp2/udp/prot_eng_tx.v new file mode 100644 index 000000000..c642842f6 --- /dev/null +++ b/fpga/usrp2/udp/prot_eng_tx.v @@ -0,0 +1,146 @@ + +// The input FIFO contents should be 16 bits wide +//   The first word is 1 for fast path (accelerated protocol) +//                     0 for software implemented protocol +//   The second word is the number of bytes in the packet,  +//         and must be valid even if we are in slow path mode +//            Odd means the last word is half full +//   Flags[1:0] is {eop, sop} +//   Protocol word format is: +//             21   UDP Source Port Here +//             20   UDP Dest Port Here +//             19   Last Header Line +//             18   IP Header Checksum XOR +//             17   IP Length Here +//             16   UDP Length Here +//           15:0   data word to be sent + +module prot_eng_tx +  #(parameter BASE=0) +   (input clk, input reset, input clear, +    input set_stb, input [7:0] set_addr, input [31:0] set_data, +    input [18:0] datain, input src_rdy_i, output dst_rdy_o, +    output [18:0] dataout, output src_rdy_o, input dst_rdy_i); + +   wire [2:0] flags_i = datain[18:16]; +   reg [15:0] dataout_int; +   reg fast_path, sof_o; +    +   wire [2:0] flags_o 	 = {flags_i[2], flags_i[1], sof_o};  // OCC, EOF, SOF + +   assign dataout 	 = {flags_o[2:0], dataout_int[15:0]}; + +   reg [4:0] state; +   wire do_payload 	 = (state == 31); +    +   assign dst_rdy_o 	 = dst_rdy_i & (do_payload | (state==0) | (state==1) | (state==30)); +   assign src_rdy_o 	 = src_rdy_i & ~((state==0) | (state==1) | (state==30)); +    +   localparam HDR_WIDTH  = 16 + 6;  // 16 bits plus flags +   localparam HDR_LEN 	 = 32;      // Up to 64 bytes of protocol +    +   // Store header values in a small dual-port (distributed) ram +   reg [HDR_WIDTH-1:0] header_ram[0:HDR_LEN-1]; +   wire [HDR_WIDTH-1:0] header_word; + +   reg [1:0] 		port_sel; +   reg [31:0] 		per_port_data[0:3]; +   reg [15:0] 		udp_src_port, udp_dst_port, chk_precompute; + +   always @(posedge clk) udp_src_port <= per_port_data[port_sel][31:16]; +   always @(posedge clk) udp_dst_port <= per_port_data[port_sel][15:0]; + +   always @(posedge clk) +     if(set_stb & ((set_addr & 8'hE0) == BASE)) +       header_ram[set_addr[4:0]] <= set_data; + +   always @(posedge clk) +     if(set_stb & (set_addr == (BASE + 14))) +       chk_precompute <= set_data[15:0]; + +   always @(posedge clk) +     if(set_stb & ((set_addr & 8'hFC) == (BASE+24))) +       per_port_data[set_addr[1:0]] <= set_data; +    +   wire do_udp_src_port = header_word[21]; +   wire do_udp_dst_port = header_word[20]; +   wire last_hdr_line   = header_word[19]; +   wire do_ip_chk       = header_word[18]; +   wire do_ip_len       = header_word[17]; +   wire do_udp_len      = header_word[16]; + +   assign header_word = header_ram[state]; +    +   // Protocol State Machine +   reg [15:0] length; +   wire [15:0] ip_length = length + 28;  // IP HDR + UDP HDR +   wire [15:0] udp_length = length + 8;  //  UDP HDR +  +   always @(posedge clk) +     if(reset) +       begin +	  state     <= 0; +	  fast_path <= 0; +	  sof_o   <= 0; +       end +     else +       if(src_rdy_i & dst_rdy_i) +	 case(state) +	   0 : +	     begin +		fast_path <= datain[0]; +		port_sel <= datain[2:1]; +		state <= 1; +	     end +	   1 : +	     begin +		length 	<= datain[15:0]; +		sof_o <= 1; +		if(fast_path) +		  state <= 2; +		else +		  state <= 30;  // Skip 1 word for alignment +	     end +	   30 : +	     state <= 31; +	   31 : +	     begin +		sof_o <= 0; +		if(flags_i[1]) // eop +		  state <= 0; +	     end +	   default : +	     begin +		sof_o 	<= 0; +		if(~last_hdr_line) +		  state <= state + 1; +		else +		  state <= 31; +	     end +	 endcase // case (state) + +   wire [15:0] checksum; +   add_onescomp #(.WIDTH(16)) add_onescomp  +     (.A(chk_precompute),.B(ip_length),.SUM(checksum)); + +   reg [15:0]  checksum_reg; +   always @(posedge clk) +     checksum_reg <= checksum; +    +   always @* +     if(do_payload) +       dataout_int 	<= datain[15:0]; +     else if(do_ip_chk) +       dataout_int 	<= 16'hFFFF ^ checksum_reg; +     else if(do_ip_len) +       dataout_int 	<= ip_length; +     else if(do_udp_len) +       dataout_int 	<= udp_length; +     else if(do_udp_src_port) +       dataout_int      <= udp_src_port; +     else if(do_udp_dst_port) +       dataout_int      <= udp_dst_port; +     else +       dataout_int 	<= header_word[15:0]; +    +endmodule // prot_eng_tx diff --git a/fpga/usrp2/udp/prot_eng_tx_tb.v b/fpga/usrp2/udp/prot_eng_tx_tb.v new file mode 100644 index 000000000..c8fffe605 --- /dev/null +++ b/fpga/usrp2/udp/prot_eng_tx_tb.v @@ -0,0 +1,174 @@ +module prot_eng_tx_tb(); + +   localparam BASE = 128; +   reg clk    = 0; +   reg rst    = 1; +   reg clear  = 0; +   initial #1000 rst = 0; +   always #50 clk = ~clk; +    +   reg [31:0] f36_data; +   reg [1:0] f36_occ; +   reg f36_sof, f36_eof; +    +   wire [35:0] f36_in = {f36_occ,f36_eof,f36_sof,f36_data}; +   reg src_rdy_f36i  = 0; +   reg [15:0] count; + +   wire [35:0] casc_do; +   wire [18:0] final_out, prot_out; + +   wire src_rdy_final, dst_rdy_final, src_rdy_prot; +   reg dst_rdy_prot =0; +    +   wire dst_rdy_f36o ; +   fifo_long #(.WIDTH(36), .SIZE(4)) fifo_cascade36 +     (.clk(clk),.reset(rst),.clear(clear), +      .datain(f36_in),.src_rdy_i(src_rdy_f36i),.dst_rdy_o(dst_rdy_f36i), +      .dataout(casc_do),.src_rdy_o(src_rdy_f36o),.dst_rdy_i(dst_rdy_f36o)); + +   fifo36_to_fifo19 fifo_converter +     (.clk(clk),.reset(rst),.clear(clear), +      .f36_datain(casc_do),.f36_src_rdy_i(src_rdy_f36o),.f36_dst_rdy_o(dst_rdy_f36o), +      .f19_dataout(final_out),.f19_src_rdy_o(src_rdy_final),.f19_dst_rdy_i(dst_rdy_final)); + +   reg set_stb; +   reg [7:0] set_addr; +   reg [31:0] set_data; +	 +   prot_eng_tx #(.BASE(BASE)) prot_eng_tx +     (.clk(clk), .reset(rst), +      .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), +      .datain(final_out[18:0]),.src_rdy_i(src_rdy_final),.dst_rdy_o(dst_rdy_final), +      .dataout(prot_out[18:0]),.src_rdy_o(src_rdy_prot),.dst_rdy_i(dst_rdy_prot)); +    +   reg [35:0] printer; + +   task WriteSREG; +      input [7:0] addr; +      input [31:0] data; + +      begin +	 @(posedge clk); +	 set_addr <= addr; +	 set_data <= data; +	 set_stb  <= 1; +	 @(posedge clk); +	 set_stb <= 0; +      end +   endtask // WriteSREG +   	 +   task ReadFromFIFO36; +      begin +	 $display("Read from FIFO36"); +	 #1 dst_rdy_prot <= 1; +	 while(~src_rdy_prot) +	   @(posedge clk); +	 while(1) +	   begin +	      while(~src_rdy_prot) +		@(posedge clk); +	      $display("Read: %h",prot_out); +	      @(posedge clk); +	   end +      end +   endtask // ReadFromFIFO36 +    +   task PutPacketInFIFO36; +      input [31:0] data_start; +      input [31:0] data_len; +      begin +	 count 	      <= 4; +	 src_rdy_f36i <= 1; +	 f36_data     <= 32'h0003_000c; +	 f36_sof      <= 1; +	 f36_eof      <= 0; +	 f36_occ      <= 0; +	 +	 $display("Put Packet in FIFO36"); +	 while(~dst_rdy_f36i) +	   @(posedge clk); +	 @(posedge clk); +	 $display("PPI_FIFO36: Entered First Line"); +	 f36_sof  <= 0; +	 f36_data <= data_start; +	 while(~dst_rdy_f36i) +	   @(posedge clk); +	 @(posedge clk); +	 while(count+4 < data_len) +	   begin +	      f36_data <= f36_data + 32'h01010101; +	      count    <= count + 4; +	      while(~dst_rdy_f36i) +		@(posedge clk); +	      @(posedge clk); +	      $display("PPI_FIFO36: Entered New Line"); +	   end +	 f36_data  <= f36_data + 32'h01010101; +	 f36_eof   <= 1; +	 if(count + 4 == data_len) +	   f36_occ <= 0; +	 else if(count + 3 == data_len) +	   f36_occ <= 3; +	 else if(count + 2 == data_len) +	   f36_occ <= 2; +	 else +	   f36_occ <= 1; +	 while(~dst_rdy_f36i) +	   @(posedge clk); +	 @(posedge clk); +	 f36_occ      <= 0; +	 f36_eof      <= 0; +	 f36_data     <= 0; +	 src_rdy_f36i <= 0; +	 $display("PPI_FIFO36: Entered Last Line"); +      end +   endtask // PutPacketInFIFO36 +    +   initial $dumpfile("prot_eng_tx_tb.vcd"); +   initial $dumpvars(0,prot_eng_tx_tb); + +   initial +     begin +	#10000; +	@(posedge clk); +	ReadFromFIFO36; +     end +    +   initial +     begin +	@(negedge rst); +	@(posedge clk); +	WriteSREG(BASE, {12'b0, 4'h0, 16'h0000}); +	WriteSREG(BASE+1, {11'b0, 5'h00, 16'h0000}); +	WriteSREG(BASE+2, {11'b0, 5'h00, 16'hABCD}); +	WriteSREG(BASE+3, {11'b0, 5'h00, 16'h1234}); +	WriteSREG(BASE+4, {11'b0, 5'h00, 16'h5678}); +	WriteSREG(BASE+5, {11'b0, 5'h00, 16'hF00D}); +	WriteSREG(BASE+6, {11'b0, 5'h00, 16'hBEEF}); +	WriteSREG(BASE+7, {11'b0, 5'h10, 16'hDCBA}); +	WriteSREG(BASE+8, {11'b0, 5'h00, 16'h4321}); +	WriteSREG(BASE+9, {11'b0, 5'h04, 16'hABCD}); +	WriteSREG(BASE+10, {11'b0, 5'h08, 16'hABCD}); +	@(posedge clk); +	 +	WriteSREG(BASE+24, 16'h6666); +	WriteSREG(BASE+25, 16'h7777); +	WriteSREG(BASE+26, 16'h8888); +	WriteSREG(BASE+27, 16'h9999); +	 +	PutPacketInFIFO36(32'hA0B0C0D0,16); +	@(posedge clk); +	@(posedge clk); +	#10000; +	@(posedge clk); +	PutPacketInFIFO36(32'hE0F0A0B0,36); +	@(posedge clk); +	@(posedge clk); +	@(posedge clk); +	@(posedge clk); +	@(posedge clk); +     end + +   initial #20000 $finish; +endmodule // prot_eng_tx_tb diff --git a/fpga/usrp2/udp/udp_wrapper.v b/fpga/usrp2/udp/udp_wrapper.v new file mode 100644 index 000000000..f4c642615 --- /dev/null +++ b/fpga/usrp2/udp/udp_wrapper.v @@ -0,0 +1,92 @@ + +module udp_wrapper +  #(parameter BASE=0) +   (input clk, input reset, input clear, +    input set_stb, input [7:0] set_addr, input [31:0] set_data, +    input [18:0] rx_f19_data, input rx_f19_src_rdy_i, output rx_f19_dst_rdy_o, +    output [18:0] tx_f19_data, output tx_f19_src_rdy_o, input tx_f19_dst_rdy_i, +     +    output [35:0] rx_f36_data, output rx_f36_src_rdy_o, input rx_f36_dst_rdy_i, +    input [35:0] tx_f36_data, input tx_f36_src_rdy_i, output tx_f36_dst_rdy_o, +    output [31:0] debug +    ); + +   wire 	 tx_int1_src_rdy, tx_int1_dst_rdy; +   wire [18:0] 	 tx_int1_data; +    +   wire 	 tx_int2_src_rdy, tx_int2_dst_rdy; +   wire [18:0] 	 tx_int2_data; +   wire [31:0] 	 debug_state; +    +   // TX side +   fifo36_to_fifo19 fifo36_to_fifo19 +     (.clk(clk), .reset(reset), .clear(clear), +      .f36_datain(tx_f36_data), .f36_src_rdy_i(tx_f36_src_rdy_i), .f36_dst_rdy_o(tx_f36_dst_rdy_o), +      .f19_dataout(tx_int1_data), .f19_src_rdy_o(tx_int1_src_rdy), .f19_dst_rdy_i(tx_int1_dst_rdy) ); + +   fifo_short #(.WIDTH(19)) shortfifo19_a +     (.clk(clk), .reset(reset), .clear(clear), +      .datain(tx_int1_data), .src_rdy_i(tx_int1_src_rdy), .dst_rdy_o(tx_int1_dst_rdy), +      .dataout(tx_int2_data), .src_rdy_o(tx_int2_src_rdy), .dst_rdy_i(tx_int2_dst_rdy), +      .space(), .occupied() ); +      +   prot_eng_tx #(.BASE(BASE)) prot_eng_tx +     (.clk(clk), .reset(reset), .clear(clear), +      .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), +      .datain(tx_int2_data), .src_rdy_i(tx_int2_src_rdy), .dst_rdy_o(tx_int2_dst_rdy), +      .dataout(tx_f19_data), .src_rdy_o(tx_f19_src_rdy_o), .dst_rdy_i(tx_f19_dst_rdy_i) ); + +   // RX side +   wire rx_int1_src_rdy, rx_int1_dst_rdy; +   wire [18:0] rx_int1_data; +       +   wire rx_int2_src_rdy, rx_int2_dst_rdy; +   wire [18:0] rx_int2_data; +       +   //wire        rx_int3_src_rdy, rx_int3_dst_rdy; +   //wire [35:0] rx_int3_data; +    +`ifdef USE_PROT_ENG +   prot_eng_rx #(.BASE(BASE+32)) prot_eng_rx +     (.clk(clk), .reset(reset), .clear(clear), +      .datain(rx_f19_data), .src_rdy_i(rx_f19_src_rdy_i), .dst_rdy_o(rx_f19_dst_rdy_o), +      .dataout(rx_int1_data), .src_rdy_o(rx_int1_src_rdy), .dst_rdy_i(rx_int1_dst_rdy) ); +`else +   fifo19_rxrealign fifo19_rxrealign +     (.clk(clk), .reset(reset), .clear(clear), +      .datain(rx_f19_data), .src_rdy_i(rx_f19_src_rdy_i), .dst_rdy_o(rx_f19_dst_rdy_o), +      .dataout(rx_int1_data), .src_rdy_o(rx_int1_src_rdy), .dst_rdy_i(rx_int1_dst_rdy) ); +`endif // !`ifdef USE_PROT_ENG +    +   fifo_short #(.WIDTH(19)) shortfifo19_b +     (.clk(clk), .reset(reset), .clear(clear), +      .datain(rx_int1_data), .src_rdy_i(rx_int1_src_rdy), .dst_rdy_o(rx_int1_dst_rdy), +      .dataout(rx_int2_data), .src_rdy_o(rx_int2_src_rdy), .dst_rdy_i(rx_int2_dst_rdy), +      .space(), .occupied() ); + +   fifo19_to_fifo36 fifo19_to_fifo36 +     (.clk(clk), .reset(reset), .clear(clear), +      .f19_datain(rx_int2_data), .f19_src_rdy_i(rx_int2_src_rdy), .f19_dst_rdy_o(rx_int2_dst_rdy), +      .f36_dataout(rx_f36_data), .f36_src_rdy_o(rx_f36_src_rdy_o), .f36_dst_rdy_i(rx_f36_dst_rdy_i), +      .debug(debug_state)); + +   /* +   fifo_cascade #(.WIDTH(36),.SIZE(RXFIFOSIZE)) eth0_rxfifo +     (.clk(clk), .reset(reset), .clear(clear), +      .datain(rx_int3_data), .src_rdy_i(rx_int3_src_rdy), .dst_rdy_o(rx_int3_dst_rdy), +      .dataout(rx_f36_data), .src_rdy_o(rx_f36_src_rdy_o), .dst_rdy_i(rx_f36_dst_rdy_i), +      .space(), .occupied() ); +*/ +   /* +   assign debug = { { 1'b0, rx_f19_data[18:16], rx_f19_src_rdy_i, rx_f19_dst_rdy_o, rx_f36_src_rdy_o, rx_f36_dst_rdy_i }, +		    { 2'b0, rx_int1_src_rdy, rx_int1_dst_rdy, rx_int2_src_rdy, rx_int2_dst_rdy, rx_int3_src_rdy, rx_int3_dst_rdy}, +		    { rx_int3_data[35:32], rx_f36_data[35:32] }, +		    { debug_state[1:0], rx_int1_data[18:16], rx_int2_data[18:16] } }; +    */ + +   assign debug = { { 3'd0, tx_int1_src_rdy, tx_int1_dst_rdy, tx_int1_data[18:16] }, +		    { 3'd0, tx_int2_src_rdy, tx_int2_dst_rdy, tx_int2_data[18:16] }, +		    { tx_int2_data[15:8] }, +		    { tx_int2_data[7:0] } }; +    +endmodule // udp_wrapper | 
