diff options
36 files changed, 3624 insertions, 72 deletions
| diff --git a/.gitignore b/.gitignore index b275f0e49..872a7824c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@  *~  \#*\#  a.out +*.vcd +*.lxt diff --git a/usrp2/control_lib/newfifo/fifo19_to_fifo36.v b/usrp2/control_lib/newfifo/fifo19_to_fifo36.v index e22ca0a49..5f9aeff9b 100644 --- a/usrp2/control_lib/newfifo/fifo19_to_fifo36.v +++ b/usrp2/control_lib/newfifo/fifo19_to_fifo36.v @@ -7,7 +7,8 @@ module fifo19_to_fifo36     output [35:0] f36_dataout,     output f36_src_rdy_o, -   input f36_dst_rdy_i +   input f36_dst_rdy_i, +   output [31:0] debug     );     reg 	 f36_sof, f36_eof, f36_occ; @@ -50,7 +51,9 @@ module fifo19_to_fifo36  	     state <= 2;  	   2 :   	     if(xfer_out) -	       state 	   <= 1; +	       if(~f19_eof) +		 state 	   <= 1; +	   // remain in state 2 if we are at eof  	 endcase // case(state)         else  	 if(xfer_out) @@ -67,5 +70,7 @@ module fifo19_to_fifo36     assign    f19_dst_rdy_o  = xfer_out | (state != 2);     assign    f36_dataout    = {f36_occ,f36_eof,f36_sof,dat0,dat1};     assign    f36_src_rdy_o  = (state == 2); -       + +   assign    debug = state; +     endmodule // fifo19_to_fifo36 diff --git a/usrp2/control_lib/newfifo/ll8_to_fifo19.v b/usrp2/control_lib/newfifo/ll8_to_fifo19.v index c65be5136..af3b91afb 100644 --- a/usrp2/control_lib/newfifo/ll8_to_fifo19.v +++ b/usrp2/control_lib/newfifo/ll8_to_fifo19.v @@ -10,68 +10,64 @@ module ll8_to_fifo19     output [18:0] f19_data,     output f19_src_rdy_o,     input f19_dst_rdy_i ); - +    +   localparam XFER_EMPTY       = 0; +   localparam XFER_HALF        = 1; +   localparam XFER_HALF_WRITE  = 3; +        // Why anybody would use active low in an FPGA is beyond me...     wire  ll_sof      = ~ll_sof_n;     wire  ll_eof      = ~ll_eof_n;     wire  ll_src_rdy  = ~ll_src_rdy_n;     wire  ll_dst_rdy;     assign    ll_dst_rdy_n  = ~ll_dst_rdy; - -   wire xfer_out 	   = f19_src_rdy_o & f19_dst_rdy_i; -   //  wire xfer_in 	   = ll_src_rdy & ll_dst_rdy;   Not needed -   reg 	 f19_sof, f19_eof, f19_occ; +   wire  xfer_out 	   = f19_src_rdy_o & f19_dst_rdy_i; +   wire  xfer_in 	   = ll_src_rdy & ll_dst_rdy;  +    +   reg 	 hold_sof; +   wire  f19_sof, f19_eof, f19_occ;     reg [1:0] state; -   reg [7:0] dat0, dat1; - -   always @(posedge clk) -     if(ll_src_rdy & ((state==0)|xfer_out)) -       f19_sof <= ll_sof; - +   reg [7:0] hold_reg; +        always @(posedge clk) -     if(ll_src_rdy & ((state != 2)|xfer_out)) -       f19_eof <= ll_eof; - +     if(ll_src_rdy & (state==XFER_EMPTY)) +       hold_reg 	      <= ll_data; +        always @(posedge clk) -     if(ll_eof) -       f19_occ <= ~state[0]; -     else -       f19_occ <= 0; +     if(ll_sof & (state==XFER_EMPTY)) +       hold_sof 	      <= 1; +     else if(xfer_out) +       hold_sof 	      <= 0;     always @(posedge clk) -     if(reset) -       state   <= 0; +     if(reset | clear) +       state 		      <= XFER_EMPTY;       else -       if(ll_src_rdy) -	 case(state) -	   0 :  +       case(state) +	 XFER_EMPTY : +	   if(ll_src_rdy)  	     if(ll_eof) -	       state <= 2; +	       state 	      <= XFER_HALF_WRITE;  	     else -	       state <= 1; -	   1 :  -	     state <= 2; -	   2 :  -	     if(xfer_out) -	       state 	   <= 1; -	 endcase // case(state) -       else -	 if(xfer_out) -	   state 	   <= 0; - -   always @(posedge clk) -     if(ll_src_rdy & (state==1)) -       dat1 		   <= ll_data; - -   always @(posedge clk) -     if(ll_src_rdy & ((state==0) | xfer_out)) -       dat0 		   <= ll_data; +	       state 	      <= XFER_HALF; +	 XFER_HALF : +	   if(ll_src_rdy & f19_dst_rdy_i) +	       state 	      <= XFER_EMPTY; +         XFER_HALF_WRITE : +	   if(f19_dst_rdy_i) +	     state 	<= XFER_EMPTY; +       endcase // case (state) +       +   assign ll_dst_rdy 	 = (state==XFER_EMPTY) | ((state==XFER_HALF)&f19_dst_rdy_i); +   assign f19_src_rdy_o  = (state==XFER_HALF_WRITE) | ((state==XFER_HALF)&ll_src_rdy); +    +   assign f19_sof 	 = hold_sof | (ll_sof & (state==XFER_HALF)); +   assign f19_eof 	 = (state == XFER_HALF_WRITE) | ll_eof; +   assign f19_occ 	 = (state == XFER_HALF_WRITE); -   assign    ll_dst_rdy     = xfer_out | (state != 2); -   assign    f19_data 	    = {f19_occ,f19_eof,f19_sof,dat0,dat1}; -   assign    f19_src_rdy_o  = (state == 2); +   assign f19_data 	 = {f19_occ,f19_eof,f19_sof,hold_reg,ll_data};  endmodule // ll8_to_fifo19 diff --git a/usrp2/control_lib/settings_bus.v b/usrp2/control_lib/settings_bus.v index d01a30ab4..fc960e456 100644 --- a/usrp2/control_lib/settings_bus.v +++ b/usrp2/control_lib/settings_bus.v @@ -10,7 +10,6 @@ module settings_bus       input wb_stb_i,       input wb_we_i,       output reg wb_ack_o, -     input sys_clk,       output strobe,       output reg [7:0] addr,       output reg [31:0] data); diff --git a/usrp2/sdr_lib/dsp_core_rx_udp.v b/usrp2/sdr_lib/dsp_core_rx_udp.v new file mode 100644 index 000000000..1e689fc7f --- /dev/null +++ b/usrp2/sdr_lib/dsp_core_rx_udp.v @@ -0,0 +1,183 @@ + +module dsp_core_rx +  #(parameter BASE = 160) +  (input clk, input rst, +   input set_stb, input [7:0] set_addr, input [31:0] set_data, + +   input [13:0] adc_a, input adc_ovf_a, +   input [13:0] adc_b, input adc_ovf_b, +    +   input [15:0] io_rx, + +   output [31:0] sample, +   input run, +   output strobe, +   output [31:0] debug +   ); + +   wire [15:0] scale_i, scale_q; +   wire [13:0] adc_a_ofs, adc_b_ofs; +   reg [13:0] adc_i, adc_q; +   wire [31:0] phase_inc; +   reg [31:0]  phase; + +   wire [35:0] prod_i, prod_q; +   wire [23:0] i_cordic, q_cordic; +   wire [23:0] i_cic, q_cic; +   wire [17:0] i_cic_scaled, q_cic_scaled; +   wire [17:0] i_hb1, q_hb1; +   wire [17:0] i_hb2, q_hb2; +   wire [15:0] i_out, q_out; + +   wire        strobe_cic, strobe_hb1, strobe_hb2; +   wire        enable_hb1, enable_hb2; +   wire [7:0]  cic_decim_rate; + +   wire [31:10] UNUSED_1; +   wire [31:4] 	UNUSED_2; +   wire [31:2] 	UNUSED_3; +    +   setting_reg #(.my_addr(BASE+0)) sr_0 +     (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(phase_inc),.changed()); +    +   setting_reg #(.my_addr(BASE+1)) sr_1 +     (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out({scale_i,scale_q}),.changed()); +    +   setting_reg #(.my_addr(BASE+2)) sr_2 +     (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out({UNUSED_1, enable_hb1, enable_hb2, cic_decim_rate}),.changed()); + +   rx_dcoffset #(.WIDTH(14),.ADDR(BASE+3)) rx_dcoffset_a +     (.clk(clk),.rst(rst),.set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), +      .adc_in(adc_a),.adc_out(adc_a_ofs)); +    +   rx_dcoffset #(.WIDTH(14),.ADDR(BASE+4)) rx_dcoffset_b +     (.clk(clk),.rst(rst),.set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), +      .adc_in(adc_b),.adc_out(adc_b_ofs)); + +   wire [3:0]  muxctrl; +   setting_reg #(.my_addr(BASE+5)) sr_8 +     (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out({UNUSED_2,muxctrl}),.changed()); + +   wire [1:0] gpio_ena; +   setting_reg #(.my_addr(BASE+6)) sr_9 +     (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out({UNUSED_3,gpio_ena}),.changed()); + +   // The TVRX connects to what is called adc_b, thus A and B are +   // swapped throughout the design. +   // +   // In the interest of expediency and keeping the s/w sane, we just remap them here. +   // The I & Q fields are mapped the same: +   // 0 -> "the real A" (as determined by the TVRX) +   // 1 -> "the real B" +   // 2 -> const zero +    +   always @(posedge clk) +     case(muxctrl[1:0])		// The I mapping +       0: adc_i <= adc_b_ofs;	// "the real A" +       1: adc_i <= adc_a_ofs; +       2: adc_i <= 0; +       default: adc_i <= 0; +     endcase // case(muxctrl[1:0]) +           +   always @(posedge clk) +     case(muxctrl[3:2])		// The Q mapping +       0: adc_q <= adc_b_ofs;	// "the real A" +       1: adc_q <= adc_a_ofs; +       2: adc_q <= 0; +       default: adc_q <= 0; +     endcase // case(muxctrl[3:2]) +        +   always @(posedge clk) +     if(rst) +       phase <= 0; +     else if(~run) +       phase <= 0; +     else +       phase <= phase + phase_inc; + +   MULT18X18S mult_i +     (.P(prod_i),    // 36-bit multiplier output +      .A({{4{adc_i[13]}},adc_i} ),    // 18-bit multiplier input +      .B({{2{scale_i[15]}},scale_i}),    // 18-bit multiplier input +      .C(clk),    // Clock input +      .CE(1),  // Clock enable input +      .R(rst)     // Synchronous reset input +      ); + +   MULT18X18S mult_q +     (.P(prod_q),    // 36-bit multiplier output +      .A({{4{adc_q[13]}},adc_q} ),    // 18-bit multiplier input +      .B({{2{scale_q[15]}},scale_q}),    // 18-bit multiplier input +      .C(clk),    // Clock input +      .CE(1),  // Clock enable input +      .R(rst)     // Synchronous reset input +      );  + +    +   cordic_z24 #(.bitwidth(24)) +     cordic(.clock(clk), .reset(rst), .enable(run), +	    .xi(prod_i[23:0]),. yi(prod_q[23:0]), .zi(phase[31:8]), +	    .xo(i_cordic),.yo(q_cordic),.zo() ); + +   cic_strober cic_strober(.clock(clk),.reset(rst),.enable(run),.rate(cic_decim_rate), +			   .strobe_fast(1),.strobe_slow(strobe_cic) ); + +   cic_decim #(.bw(24)) +     decim_i (.clock(clk),.reset(rst),.enable(run), +	      .rate(cic_decim_rate),.strobe_in(1'b1),.strobe_out(strobe_cic), +	      .signal_in(i_cordic),.signal_out(i_cic)); +    +   cic_decim #(.bw(24)) +     decim_q (.clock(clk),.reset(rst),.enable(run), +	      .rate(cic_decim_rate),.strobe_in(1'b1),.strobe_out(strobe_cic), +	      .signal_in(q_cordic),.signal_out(q_cic)); + +   round_reg #(.bits_in(24),.bits_out(18)) round_icic (.clk(clk),.in(i_cic),.out(i_cic_scaled)); +   round_reg #(.bits_in(24),.bits_out(18)) round_qcic (.clk(clk),.in(q_cic),.out(q_cic_scaled)); +   reg 	       strobe_cic_d1; +   always @(posedge clk) strobe_cic_d1 <= strobe_cic; +    +   small_hb_dec #(.WIDTH(18)) small_hb_i +     (.clk(clk),.rst(rst),.bypass(~enable_hb1),.run(run), +      .stb_in(strobe_cic_d1),.data_in(i_cic_scaled),.stb_out(strobe_hb1),.data_out(i_hb1)); +    +   small_hb_dec #(.WIDTH(18)) small_hb_q +     (.clk(clk),.rst(rst),.bypass(~enable_hb1),.run(run), +      .stb_in(strobe_cic_d1),.data_in(q_cic_scaled),.stb_out(),.data_out(q_hb1)); + +   wire [8:0]  cpi_hb = enable_hb1 ? {cic_decim_rate,1'b0} : {1'b0,cic_decim_rate}; +   hb_dec #(.IWIDTH(18), .OWIDTH(18), .CWIDTH(18), .ACCWIDTH(24)) hb_i +     (.clk(clk),.rst(rst),.bypass(~enable_hb2),.run(run),.cpi(cpi_hb), +      .stb_in(strobe_hb1),.data_in(i_hb1),.stb_out(strobe_hb2),.data_out(i_hb2)); + +   hb_dec #(.IWIDTH(18), .OWIDTH(18), .CWIDTH(18), .ACCWIDTH(24)) hb_q +     (.clk(clk),.rst(rst),.bypass(~enable_hb2),.run(run),.cpi(cpi_hb), +      .stb_in(strobe_hb1),.data_in(q_hb1),.stb_out(),.data_out(q_hb2)); + +   round #(.bits_in(18),.bits_out(16)) round_iout (.in(i_hb2),.out(i_out)); +   round #(.bits_in(18),.bits_out(16)) round_qout (.in(q_hb2),.out(q_out)); + +   // Streaming GPIO +   // +   // io_rx[15] => I channel LSB if gpio_ena[0] high +   // io_rx[14] => Q channel LSB if gpio_ena[1] high + +   reg [31:0] sample_reg; +   always @(posedge clk) +     begin +	sample_reg[31:17] <= i_out[15:1]; +	sample_reg[15:1]  <= q_out[15:1]; +	sample_reg[16]    <= gpio_ena[0] ? io_rx[15] : i_out[0];  +	sample_reg[0]     <= gpio_ena[1] ? io_rx[14] : q_out[0]; +     end +    +   assign      sample = sample_reg; +   assign      strobe = strobe_hb2; +   assign      debug = {enable_hb1, enable_hb2, run, strobe, strobe_cic, strobe_cic_d1, strobe_hb1, strobe_hb2}; +    +endmodule // dsp_core_rx diff --git a/usrp2/sdr_lib/dsp_core_tx.v b/usrp2/sdr_lib/dsp_core_tx.v index 346d65ced..22d3d44a3 100644 --- a/usrp2/sdr_lib/dsp_core_tx.v +++ b/usrp2/sdr_lib/dsp_core_tx.v @@ -1,7 +1,6 @@ -`define DSP_CORE_TX_BASE 128 -  module dsp_core_tx +  #(parameter BASE=0)    (input clk, input rst,     input set_stb, input [7:0] set_addr, input [31:0] set_data, @@ -22,19 +21,19 @@ module dsp_core_tx     wire [3:0]  dacmux_a, dacmux_b;     wire        enable_hb1, enable_hb2; -   setting_reg #(.my_addr(`DSP_CORE_TX_BASE+0)) sr_0 +   setting_reg #(.my_addr(BASE+0)) sr_0       (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),        .in(set_data),.out(phase_inc),.changed()); -   setting_reg #(.my_addr(`DSP_CORE_TX_BASE+1)) sr_1 +   setting_reg #(.my_addr(BASE+1)) sr_1       (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),        .in(set_data),.out({scale_i,scale_q}),.changed()); -   setting_reg #(.my_addr(`DSP_CORE_TX_BASE+2)) sr_2 +   setting_reg #(.my_addr(BASE+2)) sr_2       (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),        .in(set_data),.out({enable_hb1, enable_hb2, interp_rate}),.changed()); -   setting_reg #(.my_addr(`DSP_CORE_TX_BASE+4)) sr_4 +   setting_reg #(.my_addr(BASE+4)) sr_4       (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),        .in(set_data),.out({dacmux_b,dacmux_a}),.changed()); diff --git a/usrp2/simple_gemac/eth_tasks_f19.v b/usrp2/simple_gemac/eth_tasks_f19.v new file mode 100644 index 000000000..ff3ae5407 --- /dev/null +++ b/usrp2/simple_gemac/eth_tasks_f19.v @@ -0,0 +1,92 @@ + + +task SendFlowCtrl; +   input [15:0] fc_len; +   begin +      $display("Sending Flow Control, quanta = %d, time = %d", fc_len,$time); +      pause_time <= fc_len; +      @(posedge eth_clk); +      pause_req <= 1; +      @(posedge eth_clk); +      pause_req <= 0; +      $display("Sent Flow Control"); +   end +endtask // SendFlowCtrl + +task SendPacket_to_fifo19; +   input [31:0] data_start; +   input [15:0] data_len; +   reg [15:0] 	count; +   begin +      $display("Sending Packet Len=%d, %d", data_len, $time); +      count   <= 2; +      tx_f19_data <= {2'b0, 1'b0, 1'b1, data_start}; +      tx_f19_src_rdy  <= 1; +      #1; +      while(count < data_len) +	begin +	   while(~tx_f19_dst_rdy) +	     @(posedge sys_clk); +	   @(posedge sys_clk); +	   //tx_f19_data[31:0] = tx_f19_data[31:0] + 32'h0101_0101; +	   count 	   = count + 4; +	   //tx_f19_data[32] <= 0; +	end +      //tx_f19_data[33] 	  <= 1; +      while(~tx_f19_dst_rdy) +	@(posedge sys_clk); +      @(posedge sys_clk); +      tx_f19_src_rdy <= 0; +   end +endtask // SendPacket_to_fifo19 + +/* +task Waiter; +   input [31:0] wait_length; +   begin +      tx_ll_src_rdy2 <= 0; +      repeat(wait_length) +	@(posedge clk); +      tx_ll_src_rdy2 <= 1; +   end +endtask // Waiter +*/ + +/* +task SendPacketFromFile_f19; +   input [31:0] data_len; +   input [31:0] wait_length; +   input [31:0] wait_time; +    +   integer count; +   begin +      $display("Sending Packet From File to LL8 Len=%d, %d",data_len,$time); +      $readmemh("test_packet.mem",pkt_rom );      + +      while(~tx_f19_dst_rdy) +	@(posedge clk); +      tx_f19_data <= pkt_rom[0]; +      tx_f19_src_rdy <= 1; +      tx_f19_eof     <= 0; +      @(posedge clk); +       +      for(i=1;i<data_len-1;i=i+1) +	begin +	   while(~tx_ll_dst_rdy2) +	     @(posedge clk); +	   tx_ll_data2 <= pkt_rom[i]; +	   tx_ll_sof2  <= 0; +	   @(posedge clk); +//	   if(i==wait_time) +//	     Waiter(wait_length); +	end +       +      while(~tx_ll_dst_rdy2) +	@(posedge clk); +      tx_ll_eof2 <= 1; +      tx_ll_data2 <= pkt_rom[data_len-1]; +      @(posedge clk); +      tx_ll_src_rdy2 <= 0; +   end +endtask +*/ diff --git a/usrp2/simple_gemac/ll8_shortfifo.v b/usrp2/simple_gemac/ll8_shortfifo.v deleted file mode 100644 index e69de29bb..000000000 --- a/usrp2/simple_gemac/ll8_shortfifo.v +++ /dev/null diff --git a/usrp2/simple_gemac/simple_gemac.v b/usrp2/simple_gemac/simple_gemac.v index e7f327358..2dd8deb99 100644 --- a/usrp2/simple_gemac/simple_gemac.v +++ b/usrp2/simple_gemac/simple_gemac.v @@ -16,7 +16,9 @@ module simple_gemac     output rx_clk, output [7:0] rx_data, output rx_valid, output rx_error, output rx_ack,     // TX Client Interface -   output tx_clk, input [7:0] tx_data, input tx_valid, input tx_error, output tx_ack +   output tx_clk, input [7:0] tx_data, input tx_valid, input tx_error, output tx_ack, + +   output [31:0] debug     );     localparam SGE_IFG 		     = 8'd12;  // 12 should be the absolute minimum @@ -46,7 +48,8 @@ module simple_gemac        .ucast_addr(ucast_addr), .mcast_addr(mcast_addr),        .pass_ucast(pass_ucast), .pass_mcast(pass_mcast), .pass_bcast(pass_bcast),         .pass_pause(pass_pause), .pass_all(pass_all), -      .pause_quanta_rcvd(pause_quanta_rcvd), .pause_rcvd(pause_rcvd)  +      .pause_quanta_rcvd(pause_quanta_rcvd), .pause_rcvd(pause_rcvd), +      .debug(debug)        );     flow_ctrl_tx flow_ctrl_tx diff --git a/usrp2/simple_gemac/simple_gemac_rx.v b/usrp2/simple_gemac/simple_gemac_rx.v index 45ddd6dfa..b02bb0758 100644 --- a/usrp2/simple_gemac/simple_gemac_rx.v +++ b/usrp2/simple_gemac/simple_gemac_rx.v @@ -6,7 +6,8 @@ module simple_gemac_rx     output rx_clk, output [7:0] rx_data, output reg rx_valid, output rx_error, output reg rx_ack,     input [47:0] ucast_addr, input [47:0] mcast_addr,      input pass_ucast, input pass_mcast, input pass_bcast, input pass_pause, input pass_all, -   output reg [15:0] pause_quanta_rcvd, output pause_rcvd ); +   output reg [15:0] pause_quanta_rcvd, output pause_rcvd, +   output [31:0] debug );     localparam RX_IDLE 		  = 0;     localparam RX_PREAMBLE 	  = 1; @@ -170,5 +171,7 @@ module simple_gemac_rx         pause_quanta_rcvd[7:0] <= rxd_d1;     assign rx_clk 	  = GMII_RX_CLK; + +   assign debug = rx_state;  endmodule // simple_gemac_rx diff --git a/usrp2/simple_gemac/simple_gemac_wrapper19.build b/usrp2/simple_gemac/simple_gemac_wrapper19.build new file mode 100755 index 000000000..4be0aac1f --- /dev/null +++ b/usrp2/simple_gemac/simple_gemac_wrapper19.build @@ -0,0 +1 @@ +iverilog -Wimplict -Wportbind -y ../control_lib/newfifo/ -y ../models/ -y . -y miim -y ../coregen/ -y ../control_lib/ -o simple_gemac_wrapper19_tb simple_gemac_wrapper19_tb.v diff --git a/usrp2/simple_gemac/simple_gemac_wrapper19.v b/usrp2/simple_gemac/simple_gemac_wrapper19.v new file mode 100644 index 000000000..6cdbd1a59 --- /dev/null +++ b/usrp2/simple_gemac/simple_gemac_wrapper19.v @@ -0,0 +1,170 @@ + +module simple_gemac_wrapper19 +  #(parameter RXFIFOSIZE=9, +    parameter TXFIFOSIZE=6) +   (input clk125, input reset, +    // GMII +    output GMII_GTX_CLK, output GMII_TX_EN, output GMII_TX_ER, output [7:0] GMII_TXD, +    input GMII_RX_CLK, input GMII_RX_DV, input GMII_RX_ER, input [7:0] GMII_RXD, +     +    // Client FIFO Interfaces +    input sys_clk, +    output [18:0] rx_f19_data, output rx_f19_src_rdy, input rx_f19_dst_rdy, +    input [18:0] tx_f19_data, input tx_f19_src_rdy, output tx_f19_dst_rdy, +     +    // Wishbone Interface +    input wb_clk, input wb_rst, input wb_stb, input wb_cyc, output wb_ack, input wb_we, +    input [7:0] wb_adr, input [31:0] wb_dat_i, output [31:0] wb_dat_o, +     +    // MIIM +    inout mdio, output mdc, +    output [31:0] debug); + +   wire 	  clear = 0; +   wire [7:0] 	  rx_data, tx_data; +   wire 	  tx_clk, tx_valid, tx_error, tx_ack; +   wire 	  rx_clk, rx_valid, rx_error, rx_ack; +    +   wire [47:0] 	  ucast_addr, mcast_addr; +   wire 	  pass_ucast, pass_mcast, pass_bcast, pass_pause, pass_all; +   wire 	  pause_req; +   wire 	  pause_request_en, pause_respect_en; +   wire [15:0] 	  pause_time, pause_thresh, pause_time_req, rx_fifo_space; + +   wire [31:0] 	  debug_state; +       +   wire 	  tx_reset, rx_reset; +   reset_sync reset_sync_tx (.clk(tx_clk),.reset_in(reset),.reset_out(tx_reset)); +   reset_sync reset_sync_rx (.clk(rx_clk),.reset_in(reset),.reset_out(rx_reset)); +    +   simple_gemac simple_gemac +     (.clk125(clk125),  .reset(reset), +      .GMII_GTX_CLK(GMII_GTX_CLK), .GMII_TX_EN(GMII_TX_EN),   +      .GMII_TX_ER(GMII_TX_ER), .GMII_TXD(GMII_TXD), +      .GMII_RX_CLK(GMII_RX_CLK), .GMII_RX_DV(GMII_RX_DV),   +      .GMII_RX_ER(GMII_RX_ER), .GMII_RXD(GMII_RXD), +      .pause_req(pause_req), .pause_time_req(pause_time_req),  +      .pause_respect_en(pause_respect_en), +      .ucast_addr(ucast_addr), .mcast_addr(mcast_addr), +      .pass_ucast(pass_ucast), .pass_mcast(pass_mcast), .pass_bcast(pass_bcast),  +      .pass_pause(pass_pause), .pass_all(pass_all), +      .rx_clk(rx_clk), .rx_data(rx_data), +      .rx_valid(rx_valid), .rx_error(rx_error), .rx_ack(rx_ack), +      .tx_clk(tx_clk), .tx_data(tx_data),  +      .tx_valid(tx_valid), .tx_error(tx_error), .tx_ack(tx_ack), +      .debug(debug_state) +      ); +    +   simple_gemac_wb simple_gemac_wb +     (.wb_clk(wb_clk), .wb_rst(wb_rst), +      .wb_cyc(wb_cyc), .wb_stb(wb_stb), .wb_ack(wb_ack), .wb_we(wb_we), +      .wb_adr(wb_adr), .wb_dat_i(wb_dat_i), .wb_dat_o(wb_dat_o), +      .mdio(mdio), .mdc(mdc), +      .ucast_addr(ucast_addr), .mcast_addr(mcast_addr), +      .pass_ucast(pass_ucast), .pass_mcast(pass_mcast), .pass_bcast(pass_bcast),  +      .pass_pause(pass_pause), .pass_all(pass_all),  +      .pause_respect_en(pause_respect_en), .pause_request_en(pause_request_en), +      .pause_time(pause_time), .pause_thresh(pause_thresh) ); + +   // RX FIFO Chain +   wire 	  rx_ll_sof, rx_ll_eof, rx_ll_src_rdy, rx_ll_dst_rdy; +    +   wire 	  rx_ll_sof2, rx_ll_eof2, rx_ll_src_rdy2, rx_ll_dst_rdy2; +   wire 	  rx_ll_sof2_n, rx_ll_eof2_n, rx_ll_src_rdy2_n, rx_ll_dst_rdy2_n; +    +   wire [7:0] 	  rx_ll_data, rx_ll_data2; +    +   wire [18:0] 	  rx_f19_data_int1; +   wire 	  rx_f19_src_rdy_int1, rx_f19_dst_rdy_int1; +    +   rxmac_to_ll8 rx_adapt +     (.clk(rx_clk), .reset(rx_reset), .clear(0), +      .rx_data(rx_data), .rx_valid(rx_valid), .rx_error(rx_error), .rx_ack(rx_ack), +      .ll_data(rx_ll_data), .ll_sof(rx_ll_sof), .ll_eof(rx_ll_eof), .ll_error(),  // error also encoded in sof/eof +      .ll_src_rdy(rx_ll_src_rdy), .ll_dst_rdy(rx_ll_dst_rdy)); + +   ll8_shortfifo rx_sfifo +     (.clk(rx_clk), .reset(rx_reset), .clear(0), +      .datain(rx_ll_data), .sof_i(rx_ll_sof), .eof_i(rx_ll_eof), +      .error_i(0), .src_rdy_i(rx_ll_src_rdy), .dst_rdy_o(rx_ll_dst_rdy), +      .dataout(rx_ll_data2), .sof_o(rx_ll_sof2), .eof_o(rx_ll_eof2), +      .error_o(), .src_rdy_o(rx_ll_src_rdy2), .dst_rdy_i(rx_ll_dst_rdy2)); + +   assign rx_ll_dst_rdy2  = ~rx_ll_dst_rdy2_n; +   assign rx_ll_src_rdy2_n = ~rx_ll_src_rdy2; +   assign rx_ll_sof2_n 	  = ~rx_ll_sof2; +   assign rx_ll_eof2_n 	  = ~rx_ll_eof2; +    +   ll8_to_fifo19 ll8_to_fifo19 +     (.clk(rx_clk), .reset(rx_reset), .clear(0), +      .ll_data(rx_ll_data2), .ll_sof_n(rx_ll_sof2_n), .ll_eof_n(rx_ll_eof2_n), +      .ll_src_rdy_n(rx_ll_src_rdy2_n), .ll_dst_rdy_n(rx_ll_dst_rdy2_n), +      .f19_data(rx_f19_data_int1), .f19_src_rdy_o(rx_f19_src_rdy_int1), .f19_dst_rdy_i(rx_f19_dst_rdy_int1)); + +   //fifo_2clock_cascade #(.WIDTH(19), .SIZE(RXFIFOSIZE)) rx_2clk_fifo +   fifo_2clock_cascade #(.WIDTH(36), .SIZE(RXFIFOSIZE)) rx_2clk_fifo +     (.wclk(rx_clk), .datain(rx_f19_data_int1),  +      .src_rdy_i(rx_f19_src_rdy_int1), .dst_rdy_o(rx_f19_dst_rdy_int1), .space(rx_fifo_space), +      .rclk(sys_clk), .dataout(rx_f19_data),  +      .src_rdy_o(rx_f19_src_rdy), .dst_rdy_i(rx_f19_dst_rdy), .occupied(), .arst(reset)); +    +   // TX FIFO Chain +   wire 	  tx_ll_sof, tx_ll_eof, tx_ll_src_rdy, tx_ll_dst_rdy; +   wire 	  tx_ll_sof2, tx_ll_eof2, tx_ll_src_rdy2, tx_ll_dst_rdy2; +   wire 	  tx_ll_sof2_n, tx_ll_eof2_n, tx_ll_src_rdy2_n, tx_ll_dst_rdy2_n; +   wire [7:0] 	  tx_ll_data, tx_ll_data2; +   wire [18:0] 	  tx_f19_data_int1; +   wire 	  tx_f19_src_rdy_int1, tx_f19_dst_rdy_int1; + +   fifo_2clock_cascade #(.WIDTH(19), .SIZE(4)) tx_2clk_fifo +     (.wclk(sys_clk), .datain(tx_f19_data),  +      .src_rdy_i(tx_f19_src_rdy), .dst_rdy_o(tx_f19_dst_rdy), .space(), +      .rclk(tx_clk), .dataout(tx_f19_data_int1),  +      .src_rdy_o(tx_f19_src_rdy_int1), .dst_rdy_i(tx_f19_dst_rdy_int1), .occupied(), .arst(rx_reset)); +    +   fifo19_to_ll8 fifo19_to_ll8 +     (.clk(tx_clk), .reset(tx_reset), .clear(clear), +      .f19_data(tx_f19_data_int1), .f19_src_rdy_i(tx_f19_src_rdy_int1), .f19_dst_rdy_o(tx_f19_dst_rdy_int1), +      .ll_data(tx_ll_data2), .ll_sof_n(tx_ll_sof2_n), .ll_eof_n(tx_ll_eof2_n), +      .ll_src_rdy_n(tx_ll_src_rdy2_n), .ll_dst_rdy_n(tx_ll_dst_rdy2_n)); + +   assign tx_ll_sof2 	    = ~tx_ll_sof2_n; +   assign tx_ll_eof2 	    = ~tx_ll_eof2_n; +   assign tx_ll_src_rdy2    = ~tx_ll_src_rdy2_n; +   assign tx_ll_dst_rdy2_n  = ~tx_ll_dst_rdy2; +    +   ll8_shortfifo tx_sfifo +     (.clk(tx_clk), .reset(tx_reset), .clear(clear), +      .datain(tx_ll_data2), .sof_i(tx_ll_sof2), .eof_i(tx_ll_eof2), +      .error_i(0), .src_rdy_i(tx_ll_src_rdy2), .dst_rdy_o(tx_ll_dst_rdy2), +      .dataout(tx_ll_data), .sof_o(tx_ll_sof), .eof_o(tx_ll_eof), +      .error_o(), .src_rdy_o(tx_ll_src_rdy), .dst_rdy_i(tx_ll_dst_rdy)); +    +   ll8_to_txmac ll8_to_txmac +     (.clk(tx_clk), .reset(tx_reset), .clear(clear), +      .ll_data(tx_ll_data), .ll_sof(tx_ll_sof), .ll_eof(tx_ll_eof), +      .ll_src_rdy(tx_ll_src_rdy), .ll_dst_rdy(tx_ll_dst_rdy), +      .tx_data(tx_data), .tx_valid(tx_valid), .tx_error(tx_error), .tx_ack(tx_ack)); + +   // Flow Control +   flow_ctrl_rx flow_ctrl_rx +     (.pause_request_en(pause_request_en), .pause_time(pause_time), .pause_thresh(pause_thresh), +      .rx_clk(rx_clk), .rx_reset(rx_reset), .rx_fifo_space(rx_fifo_space), +      .tx_clk(tx_clk), .tx_reset(tx_reset), .pause_req(pause_req), .pause_time_req(pause_time_req)); +    +   wire [31:0] 	  debug_tx, debug_rx; + +   assign debug_tx  = { { tx_ll_data }, +			{ tx_ll_sof, tx_ll_eof, tx_ll_src_rdy, tx_ll_dst_rdy,  +			  tx_ll_sof2, tx_ll_eof2, tx_ll_src_rdy2, tx_ll_dst_rdy2 }, +			{ tx_valid, tx_error, tx_ack, tx_f19_src_rdy_int1, tx_f19_dst_rdy_int1, tx_f19_data_int1[18:16]}, +			{ tx_data} }; +   assign debug_rx  = { { rx_f19_src_rdy, rx_f19_dst_rdy, debug_state[5:0] }, +			{ rx_ll_sof, rx_ll_eof, rx_ll_src_rdy, rx_ll_dst_rdy,  +			  rx_ll_sof2, rx_ll_eof2, rx_ll_src_rdy2, rx_ll_dst_rdy2 }, +			{ rx_valid, rx_error, rx_ack, rx_f19_src_rdy_int1, rx_f19_dst_rdy_int1, rx_f19_data_int1[18:16]}, +			{ rx_data} }; + +   assign debug  = debug_rx; +    +endmodule // simple_gemac_wrapper19 diff --git a/usrp2/simple_gemac/simple_gemac_wrapper19_tb.v b/usrp2/simple_gemac/simple_gemac_wrapper19_tb.v new file mode 100644 index 000000000..7d57542dc --- /dev/null +++ b/usrp2/simple_gemac/simple_gemac_wrapper19_tb.v @@ -0,0 +1,209 @@ + + +module simple_gemac_wrapper19_tb; +`include "eth_tasks_f19.v" +      +   reg reset   = 1; +   initial #1000 reset = 0; +   wire wb_rst 	= reset; + +   reg eth_clk     = 0; +   always #50 eth_clk = ~eth_clk; + +   reg wb_clk 	= 0; +   always #173 wb_clk = ~wb_clk; + +   reg sys_clk 	= 0; +   always #77 sys_clk = ~ sys_clk; +    +   wire GMII_RX_DV, GMII_RX_ER, GMII_TX_EN, GMII_TX_ER, GMII_GTX_CLK; +   wire [7:0] GMII_RXD, GMII_TXD; + +   wire rx_valid, rx_error, rx_ack; +   wire tx_ack, tx_valid, tx_error; +    +   wire [7:0] rx_data, tx_data; +    +   reg [15:0] pause_time; +   reg pause_req      = 0; + +   wire GMII_RX_CLK   = GMII_GTX_CLK; + +   reg [7:0] FORCE_DAT_ERR = 0; +   reg FORCE_ERR = 0; +    +   // Loopback +   assign GMII_RX_DV  = GMII_TX_EN; +   assign GMII_RX_ER  = GMII_TX_ER | FORCE_ERR; +   assign GMII_RXD    = GMII_TXD ^ FORCE_DAT_ERR; + + +   wire [31:0] wb_dat_o; +   reg [31:0]  wb_dat_i; +   reg [7:0]   wb_adr; +   reg 	       wb_stb=0, wb_cyc=0, wb_we=0; +   wire        wb_ack; + +   reg [18:0]  tx_f19_data=0; +   reg 	       tx_f19_src_rdy = 0; +   wire        tx_f19_dst_rdy; +   wire [35:0] rx_f36_data; +   wire        rx_f36_src_rdy; +   wire        rx_f36_dst_rdy = 1; +    +   simple_gemac_wrapper19 simple_gemac_wrapper19 +     (.clk125(eth_clk),  .reset(reset), +      .GMII_GTX_CLK(GMII_GTX_CLK), .GMII_TX_EN(GMII_TX_EN),   +      .GMII_TX_ER(GMII_TX_ER), .GMII_TXD(GMII_TXD), +      .GMII_RX_CLK(GMII_RX_CLK), .GMII_RX_DV(GMII_RX_DV),   +      .GMII_RX_ER(GMII_RX_ER), .GMII_RXD(GMII_RXD), +      //.pause_req(pause_req), .pause_time(pause_time), + +      .sys_clk(sys_clk), .rx_f36_data(rx_f36_data), .rx_f36_src_rdy(rx_f36_src_rdy), .rx_f36_dst_rdy(rx_f36_dst_rdy), +      .tx_f19_data(tx_f19_data), .tx_f19_src_rdy(tx_f19_src_rdy), .tx_f19_dst_rdy(tx_f19_dst_rdy), + +      .wb_clk(wb_clk), .wb_rst(wb_rst), .wb_stb(wb_stb), .wb_cyc(wb_cyc), .wb_ack(wb_ack), .wb_we(wb_we), +      .wb_adr(wb_adr), .wb_dat_i(wb_dat_i), .wb_dat_o(wb_dat_o), + +      .mdio(), .mdc(), +      .debug() ); +    +   initial $dumpfile("simple_gemac_wrapper19_tb.vcd"); +   initial $dumpvars(0,simple_gemac_wrapper19_tb); + +   integer i;  +   reg [7:0] pkt_rom[0:65535]; +   reg [1023:0] ROMFile; +    +   initial +     for (i=0;i<65536;i=i+1) +       pkt_rom[i] <= 8'h0; + +   initial +     begin +	@(negedge reset); +	repeat (10) +	  @(posedge wb_clk); +	WishboneWR(0,6'b111101);  +	WishboneWR(4,16'hA0B0); +	WishboneWR(8,32'hC0D0_A1B1); +	WishboneWR(12,16'h0000); +	WishboneWR(16,32'h0000_0000); +	 +	@(posedge eth_clk); +	SendFlowCtrl(16'h0007);  // Send flow control +	@(posedge eth_clk); +	#30000; +	@(posedge eth_clk); +	SendFlowCtrl(16'h0009);  // Increase flow control before it expires +	#10000; +	@(posedge eth_clk); +	SendFlowCtrl(16'h0000);  // Cancel flow control before it expires +	@(posedge eth_clk);  + +	repeat (1000) +	  @(posedge sys_clk); +	SendPacket_to_fifo19(32'hA0B0C0D0,10);    // This packet gets dropped by the filters +	repeat (1000) +	  @(posedge sys_clk); + +	SendPacket_to_fifo19(32'hAABBCCDD,100);    // This packet gets dropped by the filters +	repeat (10) +	  @(posedge sys_clk); +/* + 	SendPacketFromFile_f36(60,0,0);  // The rest are valid packets +	repeat (10) +	  @(posedge clk); + + 	SendPacketFromFile_f36(61,0,0); +	repeat (10) +	  @(posedge clk); +	SendPacketFromFile_f36(62,0,0); +	repeat (10) +	  @(posedge clk); +	SendPacketFromFile_f36(63,0,0); +	repeat (1) +	  @(posedge clk); +	SendPacketFromFile_f36(64,0,0); +	repeat (10) +	  @(posedge clk); +	SendPacketFromFile_f36(59,0,0); +	repeat (1) +	  @(posedge clk); +	SendPacketFromFile_f36(58,0,0); +	repeat (1) +	  @(posedge clk); +	SendPacketFromFile_f36(100,0,0); +	repeat (1) +	  @(posedge clk); +	SendPacketFromFile_f36(200,150,30);  // waiting 14 empties the fifo, 15 underruns +	repeat (1) +	  @(posedge clk); +	SendPacketFromFile_f36(100,0,30); + */ +	#100000 $finish; +     end + +   // Force a CRC error +    initial +     begin +	#90000; +	@(posedge eth_clk); +	FORCE_DAT_ERR <= 8'h10; +	@(posedge eth_clk); +	FORCE_DAT_ERR <= 8'h00; +     end + +   // Force an RX_ER error (i.e. link loss) +   initial +     begin +	#116000; +	@(posedge eth_clk); +	FORCE_ERR <= 1; +	@(posedge eth_clk); +	FORCE_ERR <= 0; +     end +/* +   // Cause receive fifo to fill, causing an RX overrun +   initial +     begin +	#126000; +	@(posedge clk); +	rx_ll_dst_rdy2 <= 0; +	repeat (30)          // Repeat of 14 fills the shortfifo, but works.  15 overflows +	  @(posedge clk); +	rx_ll_dst_rdy2 <= 1; +     end +  */ +   // Tests: Send and recv flow control, send and receive good packets, RX CRC err, RX_ER, RX overrun, TX underrun +   // Still need to test: CRC errors on Pause Frames, MDIO, wishbone + +   task WishboneWR; +      input [7:0] adr; +      input [31:0] value; +      begin +	 wb_adr   <= adr; +	 wb_dat_i <= value; +	 wb_stb   <= 1; +	 wb_cyc   <= 1; +	 wb_we 	  <= 1; +	 while (~wb_ack) +	   @(posedge wb_clk); +	 @(posedge wb_clk); +	 wb_stb <= 0; +	 wb_cyc <= 0; +	 wb_we 	<= 0; +      end +   endtask // WishboneWR +   /* +   always @(posedge clk) +     if(rx_ll_src_rdy2 & rx_ll_dst_rdy2) +       begin +	  if(rx_ll_sof2 & ~rx_ll_eof2) +	    $display("RX-PKT-START %d",$time); +	  $display("RX-PKT SOF %d EOF %d ERR%d DAT %x",rx_ll_sof2,rx_ll_eof2,rx_ll_error2,rx_ll_data2); +	  if(rx_ll_eof2 & ~rx_ll_sof2) +	    $display("RX-PKT-END %d",$time); +       end +   */ +endmodule // simple_gemac_wrapper19_tb diff --git a/usrp2/timing/simple_timer.v b/usrp2/timing/simple_timer.v new file mode 100644 index 000000000..17c7f1c36 --- /dev/null +++ b/usrp2/timing/simple_timer.v @@ -0,0 +1,60 @@ + + +module simple_timer +  #(parameter BASE=0) +   (input clk, input reset, +    input set_stb, input [7:0] set_addr, input [31:0] set_data, +    output reg onetime_int, output reg periodic_int); + +   reg [31:0]  onetime_ctr; +   always @(posedge clk) +     if(reset) +       begin +	  onetime_int 	  <= 0; +	  onetime_ctr 	  <= 0; +       end +     else +       if(set_stb & (set_addr == BASE)) +	 begin +	    onetime_int   <= 0; +	    onetime_ctr   <= set_data; +	 end +       else  +	 begin +	    if(onetime_ctr == 1) +	      onetime_int <= 1; +	    if(onetime_ctr != 0) +	      onetime_ctr <= onetime_ctr - 1; +	    else +	      onetime_int <= 0; +	 end // else: !if(set_stb & (set_addr == BASE)) +    +   reg [31:0]  periodic_ctr, period; +   always @(posedge clk) +     if(reset) +       begin +	  periodic_int 	     <= 0; +	  periodic_ctr 	     <= 0; +	  period 	     <= 0; +       end +     else +       if(set_stb & (set_addr == (BASE+1))) +	 begin +	    periodic_int     <= 0; +	    periodic_ctr     <= set_data; +	    period 	     <= set_data; +	 end +       else  +	 if(periodic_ctr == 1) +	   begin +	      periodic_int   <= 1; +	      periodic_ctr   <= period; +	   end +	 else +	   if(periodic_ctr != 0) +	     begin +		periodic_int <= 0; +		periodic_ctr <= periodic_ctr - 1; +	     end +    +endmodule // simple_timer diff --git a/usrp2/timing/time_64bit.v b/usrp2/timing/time_64bit.v index c0a846e74..8ccde3f54 100644 --- a/usrp2/timing/time_64bit.v +++ b/usrp2/timing/time_64bit.v @@ -6,19 +6,28 @@ module time_64bit      (input clk, input rst,       input set_stb, input [7:0] set_addr, input [31:0] set_data,         input pps, -     output [63:0] vita_time +     output [63:0] vita_time, output pps_int       ); -   localparam 	   NEXT_TICKS = 0; -   localparam 	   NEXT_SECS = 1;    +   localparam 	   NEXT_SECS = 0;    +   localparam 	   NEXT_TICKS = 1; +   localparam      PPS_POLSRC = 2; +   localparam      PPS_IMM = 3; +        localparam 	   ROLLOVER = TICKS_PER_SEC - 1;	    +   reg [31:0] 	   seconds; +   reg [31:0] 	   ticks; +   wire 	   end_of_second;     assign 	   vita_time = {seconds,ticks};     wire [31:0] 	   next_ticks_preset;     wire [31:0] 	   next_seconds_preset;     wire 	   set_on_pps_trig;     reg 		   set_on_next_pps; +   wire 	   pps_polarity; +   wire            set_imm; +   wire 	   pps_source;     setting_reg #(.my_addr(BASE+NEXT_TICKS)) sr_next_ticks       (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), @@ -27,18 +36,37 @@ module time_64bit     setting_reg #(.my_addr(BASE+NEXT_SECS)) sr_next_secs       (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr),        .in(set_data),.out(next_seconds_preset),.changed(set_on_pps_trig)); + +   setting_reg #(.my_addr(BASE+PPS_POLSRC)) sr_pps_polsrc +     (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out({pps_source,pps_polarity}),.changed()); + +   setting_reg #(.my_addr(BASE+PPS_IMM)) sr_pps_imm +     (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(set_imm),.changed()); + +   reg [1:0] 	   pps_del; +   reg 		   pps_reg_p, pps_reg_n, pps_reg; +   wire 	   pps_edge; -   reg [31:0] 	   seconds; -   reg [31:0] 	   ticks; +   always @(posedge clk)  pps_reg_p <= pps;    +   always @(negedge clk)  pps_reg_n <= pps; +   always @* pps_reg <= pps_polarity ? pps_reg_p : pps_reg_n; -   wire 	   end_of_second; +   always @(posedge clk) +     if(rst) +       pps_del <= 2'b00; +     else +       pps_del <= {pps_del[0],pps_reg}; + +   assign pps_edge = pps_del[0] & ~pps_del[1];     always @(posedge clk)       if(rst)         set_on_next_pps <= 0;       else if(set_on_pps_trig)         set_on_next_pps <= 1; -     else if(pps) +     else if(set_imm | pps_edge)         set_on_next_pps <= 0;     always @(posedge clk) @@ -47,7 +75,7 @@ module time_64bit  	  seconds <= 32'd0;  	  ticks <= 32'd0;         end -     else if(pps & set_on_next_pps) +     else if((set_imm | pps_edge) & set_on_next_pps)         begin  	  seconds <= next_seconds_preset;  	  ticks <= next_ticks_preset; @@ -59,5 +87,7 @@ module time_64bit         end       else         ticks <= ticks + 1; + +   assign pps_int = pps_edge;  endmodule // time_64bit diff --git a/usrp2/timing/time_compare.v b/usrp2/timing/time_compare.v new file mode 100644 index 000000000..a21c9f8e0 --- /dev/null +++ b/usrp2/timing/time_compare.v @@ -0,0 +1,23 @@ + +// Top 32 bits are integer seconds, bottom 32 are clock ticks within a second + +module time_compare +  (input [63:0] time_now, +   input [63:0] trigger_time, +   output now, +   output early, +   output late,  +   output too_early); +    +   wire    sec_match   = (time_now[63:32] == trigger_time[63:32]); +   wire    sec_late    = (time_now[63:32] > trigger_time[63:32]); + +   wire    tick_match  = (time_now[31:0] == trigger_time[31:0]); +   wire    tick_late   = (time_now[31:0] > trigger_time[31:0]); +    +   assign now 	       = sec_match & tick_match; +   assign late 	       = sec_late | (sec_match & tick_late); +   assign early        = ~now & ~late; +   assign too_early    = (trigger_time[63:32] > (time_now[63:32] + 4));  // Don't wait too long +    +endmodule // time_compare diff --git a/usrp2/top/u2_core/u2_core.v b/usrp2/top/u2_core/u2_core.v index fc2e10d52..7625e1c59 100755 --- a/usrp2/top/u2_core/u2_core.v +++ b/usrp2/top/u2_core/u2_core.v @@ -135,6 +135,24 @@ module u2_core     input sim_mode,     input [3:0] clock_divider     ); + +   localparam SR_BUF_POOL = 64;   // Uses 1 reg +   localparam SR_UDP_SM   = 96;   // 64 regs +   localparam SR_RX_DSP   = 160;  // 16 +   localparam SR_RX_CTRL  = 176;  // 16 +   localparam SR_TIME64   = 192;  //  3 +   localparam SR_SIMTIMER = 198;  //  2 +   localparam SR_TX_DSP   = 128;  // 16 +   localparam SR_TX_CTRL  = 224;  // 16 + +   // FIFO Sizes, 9 = 512 lines, 10 = 1024, 11 = 2048 +   // all (most?) are 36 bits wide, so 9 is 1 BRAM, 10 is 2, 11 is 4 BRAMs +   localparam DSP_TX_FIFOSIZE = 10; +   localparam DSP_RX_FIFOSIZE = 10; +   localparam ETH_TX_FIFOSIZE = 10; +   localparam ETH_RX_FIFOSIZE = 11; +   localparam SERDES_TX_FIFOSIZE = 9; +   localparam SERDES_RX_FIFOSIZE = 9;  // RX currently doesn't use a fifo?     wire [7:0] 	set_addr, set_addr_dsp;     wire [31:0] 	set_data, set_data_dsp; @@ -334,7 +352,7 @@ module u2_core     wire [3:0] 	 wr0_flags, wr1_flags, wr2_flags, wr3_flags;     wire [31:0] 	 wr0_dat, wr1_dat, wr2_dat, wr3_dat; -   buffer_pool #(.BUF_SIZE(9), .SET_ADDR(64)) buffer_pool +   buffer_pool #(.BUF_SIZE(9), .SET_ADDR(SR_BUF_POOL)) buffer_pool       (.wb_clk_i(wb_clk),.wb_rst_i(wb_rst),        .wb_we_i(s1_we),.wb_stb_i(s1_stb),.wb_adr_i(s1_adr),.wb_dat_i(s1_dat_o),           .wb_dat_o(s1_dat_i),.wb_ack_o(s1_ack),.wb_err_o(),.wb_rty_o(), @@ -582,18 +600,19 @@ module u2_core        .fifo_occupied(dsp_tx_occ),.fifo_full(dsp_tx_full),.fifo_empty(dsp_tx_empty),        .debug(debug_txc) ); -   dsp_core_tx dsp_core_tx +   dsp_core_tx #(.BASE(SR_TX_DSP)) dsp_core_tx       (.clk(dsp_clk),.rst(dsp_rst),        .set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), +      .sample(sample_tx), .run(run_tx), .strobe(strobe_tx),        .dac_a(dac_a),.dac_b(dac_b), -      .sample(sample_tx), .run(run_tx), .strobe(strobe_tx), .debug(debug_tx_dsp) ); +      .debug(debug_tx_dsp) );     assign dsp_rst = wb_rst;     // ///////////////////////////////////////////////////////////////////////////////////     // SERDES -   serdes #(.TXFIFOSIZE(9),.RXFIFOSIZE(9)) serdes +   serdes #(.TXFIFOSIZE(SERDES_TX_FIFOSIZE),.RXFIFOSIZE(SERDES_RX_FIFOSIZE)) serdes       (.clk(dsp_clk),.rst(dsp_rst),        .ser_tx_clk(ser_tx_clk),.ser_t(ser_t),.ser_tklsb(ser_tklsb),.ser_tkmsb(ser_tkmsb),        .rd_dat_i(rd0_dat),.rd_flags_i(rd0_flags),.rd_ready_o(rd0_ready_i),.rd_ready_i(rd0_ready_o), diff --git a/usrp2/top/u2_core/u2_core_udp.v b/usrp2/top/u2_core/u2_core_udp.v new file mode 100644 index 000000000..2905e7650 --- /dev/null +++ b/usrp2/top/u2_core/u2_core_udp.v @@ -0,0 +1,872 @@ +// //////////////////////////////////////////////////////////////////////////////// +// Module Name:    u2_core +// //////////////////////////////////////////////////////////////////////////////// + +module u2_core +  #(parameter RAM_SIZE=32768) +  (// Clocks +   input dsp_clk, +   input wb_clk, +   output clock_ready, +   input clk_to_mac, +   input pps_in, +    +   // Misc, debug +   output [7:0] leds, +   output [31:0] debug, +   output [1:0] debug_clk, + +   // Expansion +   input exp_pps_in, +   output exp_pps_out, +    +   // GMII +   //   GMII-CTRL +   input GMII_COL, +   input GMII_CRS, + +   //   GMII-TX +   output [7:0] GMII_TXD, +   output GMII_TX_EN, +   output GMII_TX_ER, +   output GMII_GTX_CLK, +   input GMII_TX_CLK,  // 100mbps clk + +   //   GMII-RX +   input [7:0] GMII_RXD, +   input GMII_RX_CLK, +   input GMII_RX_DV, +   input GMII_RX_ER, + +   //   GMII-Management +   inout MDIO, +   output MDC, +   input PHY_INTn,   // open drain +   output PHY_RESETn, + +   // SERDES +   output ser_enable, +   output ser_prbsen, +   output ser_loopen, +   output ser_rx_en, +    +   output ser_tx_clk, +   output [15:0] ser_t, +   output ser_tklsb, +   output ser_tkmsb, + +   input ser_rx_clk, +   input [15:0] ser_r, +   input ser_rklsb, +   input ser_rkmsb, +    +   // CPLD interface +   output cpld_start, +   output cpld_mode, +   output cpld_done, +   input cpld_din, +   input cpld_clk, +   input cpld_detached, +   output cpld_misc, +   input cpld_init_b, +   input por, +   output config_success, +    +   // ADC +   input [13:0] adc_a, +   input adc_ovf_a, +   output adc_on_a, +   output adc_oe_a, +    +   input [13:0] adc_b, +   input adc_ovf_b, +   output adc_on_b, +   output adc_oe_b, +    +   // DAC +   output [15:0] dac_a, +   output [15:0] dac_b, + +   // I2C +   input scl_pad_i, +   output scl_pad_o, +   output scl_pad_oen_o, +   input sda_pad_i, +   output sda_pad_o, +   output sda_pad_oen_o, +    +   // Clock Gen Control +   output [1:0] clk_en, +   output [1:0] clk_sel, +   input clk_func,        // FIXME is an input to control the 9510 +   input clk_status, + +   // Generic SPI +   output sclk, +   output mosi, +   input miso, +   output sen_clk, +   output sen_dac, +   output sen_tx_db, +   output sen_tx_adc, +   output sen_tx_dac, +   output sen_rx_db, +   output sen_rx_adc, +   output sen_rx_dac, +    +   // GPIO to DBoards +   inout [15:0] io_tx, +   inout [15:0] io_rx, + +   // External RAM +   inout [17:0] RAM_D, +   output [18:0] RAM_A, +   output RAM_CE1n, +   output RAM_CENn, +   output RAM_CLK, +   output RAM_WEn, +   output RAM_OEn, +   output RAM_LDn, +    +   // Debug stuff +   output uart_tx_o,  +   input uart_rx_i, +   output uart_baud_o, +   input sim_mode, +   input [3:0] clock_divider +   ); + +   localparam SR_BUF_POOL = 64;   // Uses 1 reg +   localparam SR_UDP_SM   = 96;   // 64 regs +   localparam SR_RX_DSP   = 160;  // 16 +   localparam SR_RX_CTRL  = 176;  // 16 +   localparam SR_TIME64   = 192;  //  3 +   localparam SR_SIMTIMER = 198;  //  2 +   localparam SR_TX_DSP   = 208;  // 16 +   localparam SR_TX_CTRL  = 224;  // 16 + +   // FIFO Sizes, 9 = 512 lines, 10 = 1024, 11 = 2048 +   // all (most?) are 36 bits wide, so 9 is 1 BRAM, 10 is 2, 11 is 4 BRAMs +   localparam DSP_TX_FIFOSIZE = 10; +   localparam DSP_RX_FIFOSIZE = 10; +   localparam ETH_TX_FIFOSIZE = 10; +   localparam ETH_RX_FIFOSIZE = 11; +   localparam SERDES_TX_FIFOSIZE = 9; +   localparam SERDES_RX_FIFOSIZE = 9;  // RX currently doesn't use a fifo? +    +   wire [7:0] 	set_addr, set_addr_dsp; +   wire [31:0] 	set_data, set_data_dsp; +   wire 	set_stb, set_stb_dsp; +    +   wire 	ram_loader_done; +   wire 	ram_loader_rst, wb_rst, dsp_rst; + +   wire [31:0] 	status, status_b0, status_b1, status_b2, status_b3, status_b4, status_b5, status_b6, status_b7; +   wire 	bus_error, spi_int, i2c_int, pps_int, onetime_int, periodic_int, buffer_int; +   wire 	proc_int, overrun, underrun, uart_tx_int, uart_rx_int; + +   wire [31:0] 	debug_gpio_0, debug_gpio_1; +   wire [31:0] 	atr_lines; + +   wire [31:0] 	debug_rx, debug_mac, debug_mac0, debug_mac1, debug_tx_dsp, debug_txc, +		debug_serdes0, debug_serdes1, debug_serdes2, debug_rx_dsp, debug_udp; + +   wire [15:0] 	ser_rx_occ, ser_tx_occ, dsp_rx_occ, dsp_tx_occ, eth_rx_occ, eth_tx_occ, eth_rx_occ2; +   wire 	ser_rx_full, ser_tx_full, dsp_rx_full, dsp_tx_full, eth_rx_full, eth_tx_full, eth_rx_full2; +   wire 	ser_rx_empty, ser_tx_empty, dsp_rx_empty, dsp_tx_empty, eth_rx_empty, eth_tx_empty, eth_rx_empty2; +	 +   wire 	serdes_link_up; +   wire 	epoch; +   wire [31:0] 	irq; +   wire [63:0] 	vita_time; +    +   // /////////////////////////////////////////////////////////////////////////////////////////////// +   // Wishbone Single Master INTERCON +   localparam 	dw = 32;  // Data bus width +   localparam 	aw = 16;  // Address bus width, for byte addressibility, 16 = 64K byte memory space +   localparam	sw = 4;   // Select width -- 32-bit data bus with 8-bit granularity.   +    +   wire [dw-1:0] m0_dat_o, m0_dat_i; +   wire [dw-1:0] s0_dat_o, s1_dat_o, s0_dat_i, s1_dat_i, s2_dat_o, s3_dat_o, s2_dat_i, s3_dat_i, +		 s4_dat_o, s5_dat_o, s4_dat_i, s5_dat_i, s6_dat_o, s7_dat_o, s6_dat_i, s7_dat_i, +		 s8_dat_o, s9_dat_o, s8_dat_i, s9_dat_i, sa_dat_o, sa_dat_i, sb_dat_i, sb_dat_o, +		 sc_dat_i, sc_dat_o, sd_dat_i, sd_dat_o, se_dat_i, se_dat_o; +   wire [aw-1:0] m0_adr,s0_adr,s1_adr,s2_adr,s3_adr,s4_adr,s5_adr,s6_adr,s7_adr,s8_adr,s9_adr,sa_adr,sb_adr,sc_adr, sd_adr, se_adr; +   wire [sw-1:0] m0_sel,s0_sel,s1_sel,s2_sel,s3_sel,s4_sel,s5_sel,s6_sel,s7_sel,s8_sel,s9_sel,sa_sel,sb_sel,sc_sel, sd_sel, se_sel; +   wire 	 m0_ack,s0_ack,s1_ack,s2_ack,s3_ack,s4_ack,s5_ack,s6_ack,s7_ack,s8_ack,s9_ack,sa_ack,sb_ack,sc_ack, sd_ack, se_ack; +   wire 	 m0_stb,s0_stb,s1_stb,s2_stb,s3_stb,s4_stb,s5_stb,s6_stb,s7_stb,s8_stb,s9_stb,sa_stb,sb_stb,sc_stb, sd_stb, se_stb; +   wire 	 m0_cyc,s0_cyc,s1_cyc,s2_cyc,s3_cyc,s4_cyc,s5_cyc,s6_cyc,s7_cyc,s8_cyc,s9_cyc,sa_cyc,sb_cyc,sc_cyc, sd_cyc, se_cyc; +   wire 	 m0_err, m0_rty; +   wire 	 m0_we,s0_we,s1_we,s2_we,s3_we,s4_we,s5_we,s6_we,s7_we,s8_we,s9_we,sa_we,sb_we,sc_we,sd_we, se_we; +    +   wb_1master #(.decode_w(6), +		.s0_addr(6'b0000_00),.s0_mask(6'b100000), +		.s1_addr(6'b1000_00),.s1_mask(6'b110000), + 		.s2_addr(6'b1100_00),.s2_mask(6'b111111), +		.s3_addr(6'b1100_01),.s3_mask(6'b111111), +		.s4_addr(6'b1100_10),.s4_mask(6'b111111), +		.s5_addr(6'b1100_11),.s5_mask(6'b111111), +		.s6_addr(6'b1101_00),.s6_mask(6'b111111), +		.s7_addr(6'b1101_01),.s7_mask(6'b111111), +		.s8_addr(6'b1101_10),.s8_mask(6'b111111), +		.s9_addr(6'b1101_11),.s9_mask(6'b111111), +		.sa_addr(6'b1110_00),.sa_mask(6'b111111), +		.sb_addr(6'b1110_01),.sb_mask(6'b111111), +		.sc_addr(6'b1110_10),.sc_mask(6'b111111), +		.sd_addr(6'b1110_11),.sd_mask(6'b111111), +		.se_addr(6'b1111_00),.se_mask(6'b111111), +		.sf_addr(6'b1111_01),.sf_mask(6'b111111), +		.dw(dw),.aw(aw),.sw(sw)) wb_1master +     (.clk_i(wb_clk),.rst_i(wb_rst),        +      .m0_dat_o(m0_dat_o),.m0_ack_o(m0_ack),.m0_err_o(m0_err),.m0_rty_o(m0_rty),.m0_dat_i(m0_dat_i), +      .m0_adr_i(m0_adr),.m0_sel_i(m0_sel),.m0_we_i(m0_we),.m0_cyc_i(m0_cyc),.m0_stb_i(m0_stb), +      .s0_dat_o(s0_dat_o),.s0_adr_o(s0_adr),.s0_sel_o(s0_sel),.s0_we_o	(s0_we),.s0_cyc_o(s0_cyc),.s0_stb_o(s0_stb), +      .s0_dat_i(s0_dat_i),.s0_ack_i(s0_ack),.s0_err_i(0),.s0_rty_i(0), +      .s1_dat_o(s1_dat_o),.s1_adr_o(s1_adr),.s1_sel_o(s1_sel),.s1_we_o	(s1_we),.s1_cyc_o(s1_cyc),.s1_stb_o(s1_stb), +      .s1_dat_i(s1_dat_i),.s1_ack_i(s1_ack),.s1_err_i(0),.s1_rty_i(0), +      .s2_dat_o(s2_dat_o),.s2_adr_o(s2_adr),.s2_sel_o(s2_sel),.s2_we_o	(s2_we),.s2_cyc_o(s2_cyc),.s2_stb_o(s2_stb), +      .s2_dat_i(s2_dat_i),.s2_ack_i(s2_ack),.s2_err_i(0),.s2_rty_i(0), +      .s3_dat_o(s3_dat_o),.s3_adr_o(s3_adr),.s3_sel_o(s3_sel),.s3_we_o	(s3_we),.s3_cyc_o(s3_cyc),.s3_stb_o(s3_stb), +      .s3_dat_i(s3_dat_i),.s3_ack_i(s3_ack),.s3_err_i(0),.s3_rty_i(0), +      .s4_dat_o(s4_dat_o),.s4_adr_o(s4_adr),.s4_sel_o(s4_sel),.s4_we_o	(s4_we),.s4_cyc_o(s4_cyc),.s4_stb_o(s4_stb), +      .s4_dat_i(s4_dat_i),.s4_ack_i(s4_ack),.s4_err_i(0),.s4_rty_i(0), +      .s5_dat_o(s5_dat_o),.s5_adr_o(s5_adr),.s5_sel_o(s5_sel),.s5_we_o	(s5_we),.s5_cyc_o(s5_cyc),.s5_stb_o(s5_stb), +      .s5_dat_i(s5_dat_i),.s5_ack_i(s5_ack),.s5_err_i(0),.s5_rty_i(0), +      .s6_dat_o(s6_dat_o),.s6_adr_o(s6_adr),.s6_sel_o(s6_sel),.s6_we_o	(s6_we),.s6_cyc_o(s6_cyc),.s6_stb_o(s6_stb), +      .s6_dat_i(s6_dat_i),.s6_ack_i(s6_ack),.s6_err_i(0),.s6_rty_i(0), +      .s7_dat_o(s7_dat_o),.s7_adr_o(s7_adr),.s7_sel_o(s7_sel),.s7_we_o	(s7_we),.s7_cyc_o(s7_cyc),.s7_stb_o(s7_stb), +      .s7_dat_i(s7_dat_i),.s7_ack_i(s7_ack),.s7_err_i(0),.s7_rty_i(0), +      .s8_dat_o(s8_dat_o),.s8_adr_o(s8_adr),.s8_sel_o(s8_sel),.s8_we_o	(s8_we),.s8_cyc_o(s8_cyc),.s8_stb_o(s8_stb), +      .s8_dat_i(s8_dat_i),.s8_ack_i(s8_ack),.s8_err_i(0),.s8_rty_i(0), +      .s9_dat_o(s9_dat_o),.s9_adr_o(s9_adr),.s9_sel_o(s9_sel),.s9_we_o	(s9_we),.s9_cyc_o(s9_cyc),.s9_stb_o(s9_stb), +      .s9_dat_i(s9_dat_i),.s9_ack_i(s9_ack),.s9_err_i(0),.s9_rty_i(0), +      .sa_dat_o(sa_dat_o),.sa_adr_o(sa_adr),.sa_sel_o(sa_sel),.sa_we_o(sa_we),.sa_cyc_o(sa_cyc),.sa_stb_o(sa_stb), +      .sa_dat_i(sa_dat_i),.sa_ack_i(sa_ack),.sa_err_i(0),.sa_rty_i(0), +      .sb_dat_o(sb_dat_o),.sb_adr_o(sb_adr),.sb_sel_o(sb_sel),.sb_we_o(sb_we),.sb_cyc_o(sb_cyc),.sb_stb_o(sb_stb), +      .sb_dat_i(sb_dat_i),.sb_ack_i(sb_ack),.sb_err_i(0),.sb_rty_i(0), +      .sc_dat_o(sc_dat_o),.sc_adr_o(sc_adr),.sc_sel_o(sc_sel),.sc_we_o(sc_we),.sc_cyc_o(sc_cyc),.sc_stb_o(sc_stb), +      .sc_dat_i(sc_dat_i),.sc_ack_i(sc_ack),.sc_err_i(0),.sc_rty_i(0), +      .sd_dat_o(sd_dat_o),.sd_adr_o(sd_adr),.sd_sel_o(sd_sel),.sd_we_o(sd_we),.sd_cyc_o(sd_cyc),.sd_stb_o(sd_stb), +      .sd_dat_i(sd_dat_i),.sd_ack_i(sd_ack),.sd_err_i(0),.sd_rty_i(0), +      .se_dat_o(se_dat_o),.se_adr_o(se_adr),.se_sel_o(se_sel),.se_we_o(se_we),.se_cyc_o(se_cyc),.se_stb_o(se_stb), +      .se_dat_i(se_dat_i),.se_ack_i(se_ack),.se_err_i(0),.se_rty_i(0), +      .sf_dat_i(0),.sf_ack_i(0),.sf_err_i(0),.sf_rty_i(0)  ); +    +   ////////////////////////////////////////////////////////////////////////////////////////// +   // Reset Controller +   system_control sysctrl (.wb_clk_i(wb_clk), // .por_i(por), +			   .ram_loader_rst_o(ram_loader_rst), +			   .wb_rst_o(wb_rst), +			   .ram_loader_done_i(ram_loader_done)); + +   assign 	 config_success = ram_loader_done; +   reg 		 takeover = 0; + +   wire 	 cpld_start_int, cpld_mode_int, cpld_done_int; +    +   always @(posedge wb_clk) +     if(ram_loader_done) +       takeover = 1; +   assign 	 cpld_misc = ~takeover; + +   wire 	 sd_clk, sd_csn, sd_mosi, sd_miso; +    +   assign 	 sd_miso = cpld_din; +   assign 	 cpld_start = takeover ? sd_clk	: cpld_start_int; +   assign 	 cpld_mode = takeover ? sd_csn : cpld_mode_int; +   assign 	 cpld_done = takeover ? sd_mosi : cpld_done_int; +    +   // /////////////////////////////////////////////////////////////////// +   // RAM Loader + +   wire [31:0] 	 ram_loader_dat, if_dat; +   wire [15:0] 	 ram_loader_adr; +   wire [14:0] 	 if_adr; +   wire [3:0] 	 ram_loader_sel; +   wire 	 ram_loader_stb, ram_loader_we, ram_loader_ack; +   wire 	 iwb_ack, iwb_stb; +   ram_loader #(.AWIDTH(16),.RAM_SIZE(RAM_SIZE)) +     ram_loader (.clk_i(wb_clk),.rst_i(ram_loader_rst), +		 // CPLD Interface +		 .cfg_clk_i(cpld_clk), +		 .cfg_data_i(cpld_din), +		 .start_o(cpld_start_int), +		 .mode_o(cpld_mode_int), +		 .done_o(cpld_done_int), +		 .detached_i(cpld_detached), +		 // Wishbone Interface +		 .wb_dat_o(ram_loader_dat),.wb_adr_o(ram_loader_adr), +		 .wb_stb_o(ram_loader_stb),.wb_cyc_o(),.wb_sel_o(ram_loader_sel), +		 .wb_we_o(ram_loader_we),.wb_ack_i(ram_loader_ack), +		 .ram_loader_done_o(ram_loader_done)); + +   // ///////////////////////////////////////////////////////////////////////// +   // Processor +   aeMB_core_BE #(.ISIZ(16),.DSIZ(16),.MUL(0),.BSF(1)) +     aeMB (.sys_clk_i(wb_clk), .sys_rst_i(wb_rst), +	   // Instruction Wishbone bus to I-RAM +	   .if_adr(if_adr), +	   .if_dat(if_dat), +	   // Data Wishbone bus to system bus fabric +	   .dwb_we_o(m0_we),.dwb_stb_o(m0_stb),.dwb_dat_o(m0_dat_i),.dwb_adr_o(m0_adr), +	   .dwb_dat_i(m0_dat_o),.dwb_ack_i(m0_ack),.dwb_sel_o(m0_sel),.dwb_cyc_o(m0_cyc), +	   // Interrupts and exceptions +	   .sys_int_i(proc_int),.sys_exc_i(bus_error) ); +    +   assign 	 bus_error = m0_err | m0_rty; +    +   // ///////////////////////////////////////////////////////////////////////// +   // Dual Ported RAM -- D-Port is Slave #0 on main Wishbone +   // I-port connects directly to processor and ram loader + +   wire 	 flush_icache; +   ram_harvard #(.AWIDTH(15),.RAM_SIZE(RAM_SIZE),.ICWIDTH(7),.DCWIDTH(6)) +     sys_ram(.wb_clk_i(wb_clk),.wb_rst_i(wb_rst), +	      +	     .ram_loader_adr_i(ram_loader_adr[14:0]), .ram_loader_dat_i(ram_loader_dat), +	     .ram_loader_stb_i(ram_loader_stb), .ram_loader_sel_i(ram_loader_sel), +	     .ram_loader_we_i(ram_loader_we), .ram_loader_ack_o(ram_loader_ack), +	     .ram_loader_done_i(ram_loader_done), +	      +	     .if_adr(if_adr),  +	     .if_data(if_dat),  +	      +	     .dwb_adr_i(s0_adr[14:0]), .dwb_dat_i(s0_dat_o), .dwb_dat_o(s0_dat_i), +	     .dwb_we_i(s0_we), .dwb_ack_o(s0_ack), .dwb_stb_i(s0_stb), .dwb_sel_i(s0_sel), +	     .flush_icache(flush_icache)); +    +   setting_reg #(.my_addr(7)) sr_icache (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), +					 .in(set_data),.out(),.changed(flush_icache)); + +   // ///////////////////////////////////////////////////////////////////////// +   // Buffer Pool, slave #1 +   wire 	 rd0_ready_i, rd0_ready_o; +   wire 	 rd1_ready_i, rd1_ready_o; +   wire 	 rd2_ready_i, rd2_ready_o; +   wire 	 rd3_ready_i, rd3_ready_o; +   wire [3:0] 	 rd0_flags, rd1_flags, rd2_flags, rd3_flags; +   wire [31:0] 	 rd0_dat, rd1_dat, rd2_dat, rd3_dat; + +   wire 	 wr0_ready_i, wr0_ready_o; +   wire 	 wr1_ready_i, wr1_ready_o; +   wire 	 wr2_ready_i, wr2_ready_o; +   wire 	 wr3_ready_i, wr3_ready_o; +   wire [3:0] 	 wr0_flags, wr1_flags, wr2_flags, wr3_flags; +   wire [31:0] 	 wr0_dat, wr1_dat, wr2_dat, wr3_dat; +    +   buffer_pool #(.BUF_SIZE(9), .SET_ADDR(SR_BUF_POOL)) buffer_pool +     (.wb_clk_i(wb_clk),.wb_rst_i(wb_rst), +      .wb_we_i(s1_we),.wb_stb_i(s1_stb),.wb_adr_i(s1_adr),.wb_dat_i(s1_dat_o),    +      .wb_dat_o(s1_dat_i),.wb_ack_o(s1_ack),.wb_err_o(),.wb_rty_o(), +    +      .stream_clk(dsp_clk), .stream_rst(dsp_rst), +      .set_stb(set_stb_dsp), .set_addr(set_addr_dsp), .set_data(set_data_dsp), +      .status(status),.sys_int_o(buffer_int), + +      .s0(status_b0),.s1(status_b1),.s2(status_b2),.s3(status_b3), +      .s4(status_b4),.s5(status_b5),.s6(status_b6),.s7(status_b7), + +      // Write Interfaces +      .wr0_data_i(wr0_dat), .wr0_flags_i(wr0_flags), .wr0_ready_i(wr0_ready_i), .wr0_ready_o(wr0_ready_o), +      .wr1_data_i(wr1_dat), .wr1_flags_i(wr1_flags), .wr1_ready_i(wr1_ready_i), .wr1_ready_o(wr1_ready_o), +      .wr2_data_i(wr2_dat), .wr2_flags_i(wr2_flags), .wr2_ready_i(wr2_ready_i), .wr2_ready_o(wr2_ready_o), +      .wr3_data_i(wr3_dat), .wr3_flags_i(wr3_flags), .wr3_ready_i(wr3_ready_i), .wr3_ready_o(wr3_ready_o), +      // Read Interfaces +      .rd0_data_o(rd0_dat), .rd0_flags_o(rd0_flags), .rd0_ready_i(rd0_ready_i), .rd0_ready_o(rd0_ready_o), +      .rd1_data_o(rd1_dat), .rd1_flags_o(rd1_flags), .rd1_ready_i(rd1_ready_i), .rd1_ready_o(rd1_ready_o), +      .rd2_data_o(rd2_dat), .rd2_flags_o(rd2_flags), .rd2_ready_i(rd2_ready_i), .rd2_ready_o(rd2_ready_o), +      .rd3_data_o(rd3_dat), .rd3_flags_o(rd3_flags), .rd3_ready_i(rd3_ready_i), .rd3_ready_o(rd3_ready_o) +      ); + +   wire [31:0] 	 status_enc; +   priority_enc priority_enc (.in({16'b0,status[15:0]}), .out(status_enc)); +    +   // ///////////////////////////////////////////////////////////////////////// +   // SPI -- Slave #2 +   spi_top shared_spi +     (.wb_clk_i(wb_clk),.wb_rst_i(wb_rst),.wb_adr_i(s2_adr[4:0]),.wb_dat_i(s2_dat_o), +      .wb_dat_o(s2_dat_i),.wb_sel_i(s2_sel),.wb_we_i(s2_we),.wb_stb_i(s2_stb), +      .wb_cyc_i(s2_cyc),.wb_ack_o(s2_ack),.wb_err_o(),.wb_int_o(spi_int), +      .ss_pad_o({sen_tx_db,sen_tx_adc,sen_tx_dac,sen_rx_db,sen_rx_adc,sen_rx_dac,sen_dac,sen_clk}), +      .sclk_pad_o(sclk),.mosi_pad_o(mosi),.miso_pad_i(miso) ); + +   // ///////////////////////////////////////////////////////////////////////// +   // I2C -- Slave #3 +   i2c_master_top #(.ARST_LVL(1))  +     i2c (.wb_clk_i(wb_clk),.wb_rst_i(wb_rst),.arst_i(1'b0),  +	  .wb_adr_i(s3_adr[4:2]),.wb_dat_i(s3_dat_o[7:0]),.wb_dat_o(s3_dat_i[7:0]), +	  .wb_we_i(s3_we),.wb_stb_i(s3_stb),.wb_cyc_i(s3_cyc), +	  .wb_ack_o(s3_ack),.wb_inta_o(i2c_int), +	  .scl_pad_i(scl_pad_i),.scl_pad_o(scl_pad_o),.scl_padoen_o(scl_pad_oen_o), +	  .sda_pad_i(sda_pad_i),.sda_pad_o(sda_pad_o),.sda_padoen_o(sda_pad_oen_o) ); + +   assign 	 s3_dat_i[31:8] = 24'd0; +    +   // ///////////////////////////////////////////////////////////////////////// +   // GPIOs -- Slave #4 +   nsgpio nsgpio(.clk_i(wb_clk),.rst_i(wb_rst), +		 .cyc_i(s4_cyc),.stb_i(s4_stb),.adr_i(s4_adr[3:0]),.we_i(s4_we), +		 .dat_i(s4_dat_o),.dat_o(s4_dat_i),.ack_o(s4_ack), +		 .atr(atr_lines),.debug_0(debug_gpio_0),.debug_1(debug_gpio_1), +		 .gpio( {io_tx,io_rx} ) ); + +   // ///////////////////////////////////////////////////////////////////////// +   // Buffer Pool Status -- Slave #5    +    +   reg [31:0] 	 cycle_count; +   always @(posedge wb_clk) +     if(wb_rst) +       cycle_count <= 0; +     else +       cycle_count <= cycle_count + 1; +    +   wb_readback_mux buff_pool_status +     (.wb_clk_i(wb_clk), .wb_rst_i(wb_rst), .wb_stb_i(s5_stb), +      .wb_adr_i(s5_adr), .wb_dat_o(s5_dat_i), .wb_ack_o(s5_ack), +       +      .word00(status_b0),.word01(status_b1),.word02(status_b2),.word03(status_b3), +      .word04(status_b4),.word05(status_b5),.word06(status_b6),.word07(status_b7), +      .word08(status),.word09({sim_mode,27'b0,clock_divider[3:0]}),.word10(vita_time[63:32]), +      .word11(vita_time[31:0]),.word12(32'b0),.word13(irq),.word14(status_enc),.word15(cycle_count) +      ); + +   // ///////////////////////////////////////////////////////////////////////// +   // Ethernet MAC  Slave #6 + +   wire [18:0] 	 rx_f19_data, tx_f19_data; +   wire 	 rx_f19_src_rdy, rx_f19_dst_rdy, rx_f36_src_rdy, rx_f36_dst_rdy; +    +   simple_gemac_wrapper19 #(.RXFIFOSIZE(11), .TXFIFOSIZE(6)) simple_gemac_wrapper19 +     (.clk125(clk_to_mac),  .reset(wb_rst), +      .GMII_GTX_CLK(GMII_GTX_CLK), .GMII_TX_EN(GMII_TX_EN),   +      .GMII_TX_ER(GMII_TX_ER), .GMII_TXD(GMII_TXD), +      .GMII_RX_CLK(GMII_RX_CLK), .GMII_RX_DV(GMII_RX_DV),   +      .GMII_RX_ER(GMII_RX_ER), .GMII_RXD(GMII_RXD), +      .sys_clk(dsp_clk), +      .rx_f19_data(rx_f19_data), .rx_f19_src_rdy(rx_f19_src_rdy), .rx_f19_dst_rdy(rx_f19_dst_rdy), +      .tx_f19_data(tx_f19_data), .tx_f19_src_rdy(tx_f19_src_rdy), .tx_f19_dst_rdy(tx_f19_dst_rdy), +      .wb_clk(wb_clk), .wb_rst(wb_rst), .wb_stb(s6_stb), .wb_cyc(s6_cyc), .wb_ack(s6_ack), +      .wb_we(s6_we), .wb_adr(s6_adr), .wb_dat_i(s6_dat_o), .wb_dat_o(s6_dat_i), +      .mdio(MDIO), .mdc(MDC), +      .debug(debug_mac)); + +   wire [35:0] 	 udp_tx_data, udp_rx_data; +   wire 	 udp_tx_src_rdy, udp_tx_dst_rdy, udp_rx_src_rdy, udp_rx_dst_rdy; +    +   udp_wrapper #(.BASE(SR_UDP_SM)) udp_wrapper +     (.clk(dsp_clk), .reset(dsp_rst), .clear(0), +      .set_stb(set_stb_dsp), .set_addr(set_addr_dsp), .set_data(set_data_dsp), +      .rx_f19_data(rx_f19_data), .rx_f19_src_rdy_i(rx_f19_src_rdy), .rx_f19_dst_rdy_o(rx_f19_dst_rdy), +      .tx_f19_data(tx_f19_data), .tx_f19_src_rdy_o(tx_f19_src_rdy), .tx_f19_dst_rdy_i(tx_f19_dst_rdy), +      .rx_f36_data(udp_rx_data), .rx_f36_src_rdy_o(udp_rx_src_rdy), .rx_f36_dst_rdy_i(udp_rx_dst_rdy), +      .tx_f36_data(udp_tx_data), .tx_f36_src_rdy_i(udp_tx_src_rdy), .tx_f36_dst_rdy_o(udp_tx_dst_rdy), +      .debug(debug_udp) ); + +   fifo_cascade #(.WIDTH(36), .SIZE(ETH_TX_FIFOSIZE)) tx_eth_fifo +     (.clk(dsp_clk), .reset(dsp_rst), .clear(0), +      .datain({rd2_flags,rd2_dat}), .src_rdy_i(rd2_ready_o), .dst_rdy_o(rd2_ready_i), +      .dataout(udp_tx_data), .src_rdy_o(udp_tx_src_rdy), .dst_rdy_i(udp_tx_dst_rdy)); + +   fifo_cascade #(.WIDTH(36), .SIZE(ETH_RX_FIFOSIZE)) rx_eth_fifo +     (.clk(dsp_clk), .reset(dsp_rst), .clear(0), +      .datain(udp_rx_data), .src_rdy_i(udp_rx_src_rdy), .dst_rdy_o(udp_rx_dst_rdy), +      .dataout({wr2_flags,wr2_dat}), .src_rdy_o(wr2_ready_i), .dst_rdy_i(wr2_ready_o)); +    +   // ///////////////////////////////////////////////////////////////////////// +   // Settings Bus -- Slave #7 +   settings_bus settings_bus +     (.wb_clk(wb_clk),.wb_rst(wb_rst),.wb_adr_i(s7_adr),.wb_dat_i(s7_dat_o), +      .wb_stb_i(s7_stb),.wb_we_i(s7_we),.wb_ack_o(s7_ack), +      .strobe(set_stb),.addr(set_addr),.data(set_data)); +    +   assign 	 s7_dat_i = 32'd0; + +   settings_bus_crossclock settings_bus_crossclock +     (.clk_i(wb_clk), .rst_i(wb_rst), .set_stb_i(set_stb), .set_addr_i(set_addr), .set_data_i(set_data), +      .clk_o(dsp_clk), .rst_o(dsp_rst), .set_stb_o(set_stb_dsp), .set_addr_o(set_addr_dsp), .set_data_o(set_data_dsp)); +    +   // Output control lines +   wire [7:0] 	 clock_outs, serdes_outs, adc_outs; +   assign 	 {clock_ready, clk_en[1:0], clk_sel[1:0]} = clock_outs[4:0]; +   assign 	 {ser_enable, ser_prbsen, ser_loopen, ser_rx_en} = serdes_outs[3:0]; +   assign 	 {adc_oe_a, adc_on_a, adc_oe_b, adc_on_b } = adc_outs[3:0]; + +   wire 	 phy_reset; +   assign 	 PHY_RESETn = ~phy_reset; +    +   setting_reg #(.my_addr(0),.width(8)) sr_clk (.clk(wb_clk),.rst(wb_rst),.strobe(s7_ack),.addr(set_addr), +				      .in(set_data),.out(clock_outs),.changed()); +   setting_reg #(.my_addr(1),.width(8)) sr_ser (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), +				      .in(set_data),.out(serdes_outs),.changed()); +   setting_reg #(.my_addr(2),.width(8)) sr_adc (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), +				      .in(set_data),.out(adc_outs),.changed()); +   setting_reg #(.my_addr(4),.width(1)) sr_phy (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), +				      .in(set_data),.out(phy_reset),.changed()); + +   // ///////////////////////////////////////////////////////////////////////// +   //  LEDS +   //    register 8 determines whether leds are controlled by SW or not +   //    1 = controlled by HW, 0 = by SW +   //    In Rev3 there are only 6 leds, and the highest one is on the ETH connector +    +   wire [7:0] 	 led_src, led_sw; +   wire [7:0] 	 led_hw = {clk_status,serdes_link_up}; +    +   setting_reg #(.my_addr(3),.width(8)) sr_led (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), +				      .in(set_data),.out(led_sw),.changed()); +   setting_reg #(.my_addr(8),.width(8)) sr_led_src (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), +					  .in(set_data),.out(led_src),.changed()); + +   assign 	 leds = (led_src & led_hw) | (~led_src & led_sw); +    +   // ///////////////////////////////////////////////////////////////////////// +   // Interrupt Controller, Slave #8 + +   assign irq= {{8'b0}, +		{8'b0}, +		{3'b0, periodic_int, clk_status, serdes_link_up, uart_tx_int, uart_rx_int}, +		{pps_int,overrun,underrun,PHY_INTn,i2c_int,spi_int,onetime_int,buffer_int}}; +    +   pic pic(.clk_i(wb_clk),.rst_i(wb_rst),.cyc_i(s8_cyc),.stb_i(s8_stb),.adr_i(s8_adr[4:2]), +	   .we_i(s8_we),.dat_i(s8_dat_o),.dat_o(s8_dat_i),.ack_o(s8_ack),.int_o(proc_int), +	   .irq(irq) ); + 	  +   // ///////////////////////////////////////////////////////////////////////// +   // Master Timer, Slave #9 + +   // No longer used, replaced with simple_timer below +   /* +   wire [31:0] 	 master_time; +   timer timer +     (.wb_clk_i(wb_clk),.rst_i(wb_rst), +      .cyc_i(s9_cyc),.stb_i(s9_stb),.adr_i(s9_adr[4:2]), +      .we_i(s9_we),.dat_i(s9_dat_o),.dat_o(s9_dat_i),.ack_o(s9_ack), +      .sys_clk_i(dsp_clk),.master_time_i(master_time),.int_o(timer_int) ); +    */ +   assign s9_ack = 0; +    +   // ///////////////////////////////////////////////////////////////////////// +   //  Simple Timer interrupts +    +   simple_timer #(.BASE(SR_SIMTIMER)) simple_timer +     (.clk(wb_clk), .reset(wb_rst), +      .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), +      .onetime_int(onetime_int), .periodic_int(periodic_int)); +    +   // ///////////////////////////////////////////////////////////////////////// +   // UART, Slave #10 + +   simple_uart #(.TXDEPTH(3),.RXDEPTH(3)) uart  // depth of 3 is 128 entries +     (.clk_i(wb_clk),.rst_i(wb_rst), +      .we_i(sa_we),.stb_i(sa_stb),.cyc_i(sa_cyc),.ack_o(sa_ack), +      .adr_i(sa_adr[4:2]),.dat_i(sa_dat_o),.dat_o(sa_dat_i), +      .rx_int_o(uart_rx_int),.tx_int_o(uart_tx_int), +      .tx_o(uart_tx_o),.rx_i(uart_rx_i),.baud_o(uart_baud_o)); +    +   // ///////////////////////////////////////////////////////////////////////// +   // ATR Controller, Slave #11 + +   wire 	 run_rx, run_tx; +   reg 		 run_rx_d1; +   always @(posedge dsp_clk) +     run_rx_d1 <= run_rx; +    +   atr_controller atr_controller +     (.clk_i(wb_clk),.rst_i(wb_rst), +      .adr_i(sb_adr[5:0]),.sel_i(sb_sel),.dat_i(sb_dat_o),.dat_o(sb_dat_i), +      .we_i(sb_we),.stb_i(sb_stb),.cyc_i(sb_cyc),.ack_o(sb_ack), +      .run_rx(run_rx_d1),.run_tx(run_tx),.ctrl_lines(atr_lines) ); +    +   // ////////////////////////////////////////////////////////////////////////// +   // Time Sync, Slave #12  + +   // No longer used, see time_64bit.  Still need to handle mimo time, though +   assign sc_ack = 0; +    +   // ///////////////////////////////////////////////////////////////////////// +   // SD Card Reader / Writer, Slave #13 + +   sd_spi_wb sd_spi_wb +     (.clk(wb_clk),.rst(wb_rst), +      .sd_clk(sd_clk),.sd_csn(sd_csn),.sd_mosi(sd_mosi),.sd_miso(sd_miso), +      .wb_cyc_i(sd_cyc),.wb_stb_i(sd_stb),.wb_we_i(sd_we), +      .wb_adr_i(sd_adr[3:2]),.wb_dat_i(sd_dat_o[7:0]),.wb_dat_o(sd_dat_i[7:0]), +      .wb_ack_o(sd_ack) ); + +   assign sd_dat_i[31:8] = 0; + +   // ///////////////////////////////////////////////////////////////////////// +   // DSP RX +   wire [31:0] 	 sample_rx, sample_tx; +   wire 	 strobe_rx, strobe_tx; +   wire 	 rx_dst_rdy, rx_src_rdy, rx1_dst_rdy, rx1_src_rdy; +   wire [99:0] 	 rx_data; +   wire [35:0] 	 rx1_data; +    +   dsp_core_rx #(.BASE(SR_RX_DSP)) dsp_core_rx +     (.clk(dsp_clk),.rst(dsp_rst), +      .set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), +      .adc_a(adc_a),.adc_ovf_a(adc_ovf_a),.adc_b(adc_b),.adc_ovf_b(adc_ovf_b), +      .sample(sample_rx), .run(run_rx_d1), .strobe(strobe_rx), +      .debug(debug_rx_dsp) ); + +   wire [31:0] 	 vrc_debug; +    +   vita_rx_control #(.BASE(SR_RX_CTRL), .WIDTH(32)) vita_rx_control +     (.clk(dsp_clk), .reset(dsp_rst), .clear(0), +      .set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), +      .vita_time(vita_time), .overrun(overrun), +      .sample(sample_rx), .run(run_rx), .strobe(strobe_rx), +      .sample_fifo_o(rx_data), .sample_fifo_dst_rdy_i(rx_dst_rdy), .sample_fifo_src_rdy_o(rx_src_rdy), +      .debug_rx(vrc_debug)); + +   wire [3:0] 	 vita_state; +    +   vita_rx_framer #(.BASE(SR_RX_CTRL), .MAXCHAN(1)) vita_rx_framer +     (.clk(dsp_clk), .reset(dsp_rst), .clear(0), +      .set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), +      .sample_fifo_i(rx_data), .sample_fifo_dst_rdy_o(rx_dst_rdy), .sample_fifo_src_rdy_i(rx_src_rdy), +      .data_o(rx1_data), .dst_rdy_i(rx1_dst_rdy), .src_rdy_o(rx1_src_rdy), +      .fifo_occupied(), .fifo_full(), .fifo_empty(), +      .debug_rx(vita_state) ); + +   fifo_cascade #(.WIDTH(36), .SIZE(DSP_RX_FIFOSIZE)) rx_fifo_cascade +     (.clk(dsp_clk), .reset(dsp_rst), .clear(0), +      .datain(rx1_data), .src_rdy_i(rx1_src_rdy), .dst_rdy_o(rx1_dst_rdy), +      .dataout({wr1_flags,wr1_dat}), .src_rdy_o(wr1_ready_i), .dst_rdy_i(wr1_ready_o)); + +   // /////////////////////////////////////////////////////////////////////////////////// +   // DSP TX + +   wire [35:0] 	 tx_data; +   wire [99:0] 	 tx1_data; +   wire 	 tx_src_rdy, tx_dst_rdy, tx1_src_rdy, tx1_dst_rdy; + +   wire [31:0] 	 debug_vtc, debug_vtd, debug_vt; +    +   fifo_cascade #(.WIDTH(36), .SIZE(DSP_TX_FIFOSIZE)) tx_fifo_cascade +     (.clk(dsp_clk), .reset(dsp_rst), .clear(0), +      .datain({rd1_flags,rd1_dat}), .src_rdy_i(rd1_ready_o), .dst_rdy_o(rd1_ready_i), +      .dataout(tx_data), .src_rdy_o(tx_src_rdy), .dst_rdy_i(tx_dst_rdy) ); + +   vita_tx_deframer #(.BASE(SR_TX_CTRL), .MAXCHAN(1)) vita_tx_deframer +     (.clk(dsp_clk), .reset(dsp_rst), .clear(0), +      .set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), +      .data_i(tx_data), .src_rdy_i(tx_src_rdy), .dst_rdy_o(tx_dst_rdy), +      .sample_fifo_o(tx1_data), .sample_fifo_src_rdy_o(tx1_src_rdy), .sample_fifo_dst_rdy_i(tx1_dst_rdy), +      .debug(debug_vtd) ); + +   vita_tx_control #(.BASE(SR_TX_CTRL), .WIDTH(32)) vita_tx_control +     (.clk(dsp_clk), .reset(dsp_rst), .clear(0), +      .set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), +      .vita_time(vita_time),.underrun(underrun), +      .sample_fifo_i(tx1_data), .sample_fifo_src_rdy_i(tx1_src_rdy), .sample_fifo_dst_rdy_o(tx1_dst_rdy), +      .sample(sample_tx), .run(run_tx), .strobe(strobe_tx), +      .debug(debug_vtc) ); +    +   assign debug_vt = debug_vtc | debug_vtd; +    +   dsp_core_tx #(.BASE(SR_TX_DSP)) dsp_core_tx +     (.clk(dsp_clk),.rst(dsp_rst), +      .set_stb(set_stb_dsp),.set_addr(set_addr_dsp),.set_data(set_data_dsp), +      .sample(sample_tx), .run(run_tx), .strobe(strobe_tx), +      .dac_a(dac_a),.dac_b(dac_b), +      .debug(debug_tx_dsp) ); + +   assign dsp_rst = wb_rst; + +   // /////////////////////////////////////////////////////////////////////////////////// +   // SERDES + +   serdes #(.TXFIFOSIZE(SERDES_TX_FIFOSIZE),.RXFIFOSIZE(SERDES_RX_FIFOSIZE)) serdes +     (.clk(dsp_clk),.rst(dsp_rst), +      .ser_tx_clk(ser_tx_clk),.ser_t(ser_t),.ser_tklsb(ser_tklsb),.ser_tkmsb(ser_tkmsb), +      .rd_dat_i(rd0_dat),.rd_flags_i(rd0_flags),.rd_ready_o(rd0_ready_i),.rd_ready_i(rd0_ready_o), +      .ser_rx_clk(ser_rx_clk),.ser_r(ser_r),.ser_rklsb(ser_rklsb),.ser_rkmsb(ser_rkmsb), +      .wr_dat_o(wr0_dat),.wr_flags_o(wr0_flags),.wr_ready_o(wr0_ready_i),.wr_ready_i(wr0_ready_o), +      .tx_occupied(ser_tx_occ),.tx_full(ser_tx_full),.tx_empty(ser_tx_empty), +      .rx_occupied(ser_rx_occ),.rx_full(ser_rx_full),.rx_empty(ser_rx_empty), +      .serdes_link_up(serdes_link_up),.debug0(debug_serdes0), .debug1(debug_serdes1) ); + +   // /////////////////////////////////////////////////////////////////////////////////// +   // External RAM Interface + +   localparam PAGE_SIZE = 10;  // PAGE SIZE is in bytes, 10 = 1024 bytes + +   wire [15:0] bus2ram, ram2bus; +   wire [15:0] bridge_adr; +   wire [1:0]  bridge_sel; +   wire        bridge_stb, bridge_cyc, bridge_we, bridge_ack; +    +   wire [19:0] page; +   wire [19:0] wb_ram_adr = {page[19:PAGE_SIZE],bridge_adr[PAGE_SIZE-1:0]}; +   setting_reg #(.my_addr(6),.width(20)) sr_page (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), +				       .in(set_data),.out(page),.changed()); + +   wb_bridge_16_32 bridge +     (.wb_clk(wb_clk),.wb_rst(wb_rst), +      .A_cyc_i(se_cyc),.A_stb_i(se_stb),.A_we_i(se_we),.A_sel_i(se_sel), +      .A_adr_i(se_adr),.A_dat_i(se_dat_o),.A_dat_o(se_dat_i),.A_ack_o(se_ack), +      .B_cyc_o(bridge_cyc),.B_stb_o(bridge_stb),.B_we_o(bridge_we),.B_sel_o(bridge_sel), +      .B_adr_o(bridge_adr),.B_dat_o(bus2ram),.B_dat_i(ram2bus),.B_ack_i(bridge_ack)); + +   wb_zbt16_b wb_zbt16_b +     (.clk(wb_clk),.rst(wb_rst), +      .wb_adr_i(wb_ram_adr),.wb_dat_i(bus2ram),.wb_dat_o(ram2bus),.wb_sel_i(bridge_sel), +      .wb_cyc_i(bridge_cyc),.wb_stb_i(bridge_stb),.wb_ack_o(bridge_ack),.wb_we_i(bridge_we), +      .sram_clk(RAM_CLK),.sram_a(RAM_A),.sram_d(RAM_D[15:0]),.sram_we(RAM_WEn), +      .sram_bw(),.sram_adv(RAM_LDn),.sram_ce(RAM_CENn),.sram_oe(RAM_OEn), +      .sram_mode(),.sram_zz() ); + +   assign      RAM_CE1n = 0; +   assign      RAM_D[17:16] = 2'bzz; +    +   // ///////////////////////////////////////////////////////////////////////// +   // VITA Timing + +   time_64bit #(.TICKS_PER_SEC(32'd100000000),.BASE(SR_TIME64)) time_64bit +     (.clk(dsp_clk), .rst(dsp_rst), .set_stb(set_stb_dsp), .set_addr(set_addr_dsp), .set_data(set_data_dsp), +      .pps(pps_in), .vita_time(vita_time), .pps_int(pps_int)); +    +   // ///////////////////////////////////////////////////////////////////////////////////////// +   // Debug Pins +    +   // FIFO Level Debugging +   reg [31:0]  host_to_dsp_fifo,dsp_to_host_fifo,eth_mac_debug,serdes_to_dsp_fifo,dsp_to_serdes_fifo; +    +   always @(posedge dsp_clk) +     serdes_to_dsp_fifo <= { {ser_rx_full,ser_rx_empty,ser_rx_occ[13:0]}, +			     {dsp_tx_full,dsp_tx_empty,dsp_tx_occ[13:0]} }; + +   always @(posedge dsp_clk) +     dsp_to_serdes_fifo <= { {ser_tx_full,ser_tx_empty,ser_tx_occ[13:0]}, +			     {dsp_rx_full,dsp_rx_empty,dsp_rx_occ[13:0]} }; +    +   always @(posedge dsp_clk) +     host_to_dsp_fifo <= { {eth_rx_full,eth_rx_empty,eth_rx_occ[13:0]}, +			   {dsp_tx_full,dsp_tx_empty,dsp_tx_occ[13:0]} }; +    +   always @(posedge dsp_clk) +     dsp_to_host_fifo <= { {eth_tx_full,eth_tx_empty,eth_tx_occ[13:0]}, +			   {dsp_rx_full,dsp_rx_empty,dsp_rx_occ[13:0]} }; +    +   always @(posedge dsp_clk) +     eth_mac_debug <= { { 6'd0, GMII_TX_EN, GMII_RX_DV, debug_mac0[7:0]}, +			{eth_rx_full2, eth_rx_empty2, eth_rx_occ2[13:0]} }; +    +   assign  debug_clk[0]  = GMII_RX_CLK; // wb_clk; +   assign  debug_clk[1]  = dsp_clk; + +/* +  +   wire        mdio_cpy  = MDIO; +   assign  debug 	 = { { 1'b0, s6_stb, s6_ack, s6_we, s6_sel[3:0] }, +			     { s6_adr[15:8] }, +			     { s6_adr[7:0] }, +			     { 6'd0, mdio_cpy, MDC } }; +*/ +/* +   assign debug 	 = { { GMII_TXD }, +			     { 5'd0, GMII_TX_EN, GMII_TX_ER, GMII_GTX_CLK }, +			     { wr2_flags, rd2_flags }, +			     { 4'd0, wr2_ready_i, wr2_ready_o, rd2_ready_i, rd2_ready_o } }; +   assign debug 	 = { { GMII_RXD }, +			     { 5'd0, GMII_RX_DV, GMII_RX_ER, GMII_RX_CLK }, +			     { wr2_flags, rd2_flags }, +			     { GMII_TX_EN,3'd0, wr2_ready_i, wr2_ready_o, rd2_ready_i, rd2_ready_o } }; + */ + +//   assign debug = debug_udp; +   assign debug = vrc_debug; +   assign debug_gpio_0 = { {pps_in, pps_int, 2'd0, vita_state}, +			   {2'd0, rx_dst_rdy, rx_src_rdy, rx_data[99:96]}, +			   {run_rx_d1, run_rx, strobe_rx, overrun, wr1_flags[3:0]} ,  +			   {wr1_ready_i, wr1_ready_o, rx1_src_rdy, rx1_dst_rdy, rx1_data[35:32]}}; + +   assign debug_gpio_1 = {vita_time[63:32] }; +    +/* +    assign debug_gpio_1 = { { tx_f19_data[15:8] }, +			   { tx_f19_data[7:0] }, +			   { 3'd0, tx_f19_src_rdy, tx_f19_dst_rdy, tx_f19_data[18:16] }, +			   { 2'b0, rd2_ready_i, rd2_ready_o, rd2_flags } }; + */   +    +endmodule // u2_core + +//   wire        debug_mux; +//   setting_reg #(.my_addr(5)) sr_debug (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), +//					.in(set_data),.out(debug_mux),.changed()); + +//assign     debug = debug_mux ? host_to_dsp_fifo : dsp_to_host_fifo; +//assign     debug = debug_mux ? serdes_to_dsp_fifo : dsp_to_serdes_fifo; +    +//assign      debug = {{strobe_rx,/*adc_ovf_a*/ 1'b0,adc_a}, +//		{run_rx,/*adc_ovf_b*/ 1'b0,adc_b}}; + +//assign      debug = debug_tx_dsp; +//assign      debug = debug_serdes0; + +//assign      debug_gpio_0 = 0; //debug_serdes0; +//assign      debug_gpio_1 = 0; //debug_serdes1; + +//   assign      debug={{3'b0, wb_clk, wb_rst, dsp_rst, por, config_success}, +//	      {8'b0}, +//      {3'b0,ram_loader_ack, ram_loader_stb, ram_loader_we,ram_loader_rst,ram_loader_done }, +//    {cpld_start,cpld_mode,cpld_done,cpld_din,cpld_clk,cpld_detached,cpld_misc,cpld_init_b} }; + +//assign      debug = {dac_a,dac_b}; + +/* + assign      debug = {{ram_loader_done, takeover, 6'd0}, + {1'b0, cpld_start_int, cpld_mode_int, cpld_done_int, sd_clk, sd_csn, sd_miso, sd_mosi}, + {8'd0}, + {cpld_start, cpld_mode, cpld_done, cpld_din, cpld_misc, cpld_detached, cpld_clk, cpld_init_b}}; */ + +/*assign      debug = host_to_dsp_fifo; + assign      debug_gpio_0 = eth_mac_debug; + assign      debug_gpio_1 = 0; + */ +// Assign various commonly used debug buses. +/* + wire [31:0] debug_rx_1 = {uart_tx_o,GMII_TX_EN,strobe_rx,overrun,proc_int,buffer_int,timer_int,GMII_RX_DV, + irq[7:0], + GMII_RXD, + GMII_TXD}; +  + wire [31:0] debug_rx_2 = { 5'd0, s8_we, s8_stb, s8_ack, debug_rx[23:0] }; +    +   wire [31:0] debug_time =  {uart_tx_o, 7'b0, +			      irq[7:0], +			      6'b0, GMII_RX_DV, GMII_TX_EN, +			      4'b0, exp_pps_in, exp_pps_out, pps_in, pps_int}; + +   wire [31:0] debug_irq =  {uart_tx_o, iwb_adr, iwb_ack, +			     irq[7:0], +			     proc_int,  7'b0 }; + +   wire [31:0] debug_eth =  +	       {{uart_tx_o,proc_int,underrun,buffer_int,wr2_ready,wr2_error,wr2_done,wr2_write}, +		{8'd0}, +		{8'd0}, +		{GMII_TX_EN,GMII_RX_DV,Rx_mac_empty,Rx_mac_rd,Rx_mac_err,Rx_mac_sop,Rx_mac_eop,wr2_full} }; + +   assign      debug_serdes0 = { { rd0_dat[7:0] }, +				 { ser_tx_clk, ser_tkmsb, ser_tklsb, rd0_sop, rd0_eop, rd0_read, rd0_error, rd0_done }, +				 { ser_t[15:8] }, +				 { ser_t[7:0] } }; + +   assign      debug_serdes1 = { {1'b0,proc_int,underrun,buffer_int,wr0_ready,wr0_error,wr0_done,wr0_write}, +				 { 1'b0, ser_rx_clk, ser_rkmsb, ser_rklsb, ser_enable, ser_prbsen, ser_loopen, ser_rx_en }, +				 { ser_r[15:8] }, +				 { ser_r[7:0] } }; +        +   assign      debug_gpio_1 = {uart_tx_o,7'd0, +			       3'd0,rd1_sop,rd1_eop,rd1_read,rd1_done,rd1_error, +			       debug_txc[15:0]}; +   assign      debug_gpio_1 = debug_rx; +   assign      debug_gpio_1 = debug_serdes1; +   assign      debug_gpio_1 = debug_eth; +       +    */ +       diff --git a/usrp2/top/u2_rev3/.gitignore b/usrp2/top/u2_rev3/.gitignore index 432f8fd58..f50a2b7e5 100644 --- a/usrp2/top/u2_rev3/.gitignore +++ b/usrp2/top/u2_rev3/.gitignore @@ -54,4 +54,4 @@  /*.rpt  /*.cel  /*.restore -/build +/build* diff --git a/usrp2/top/u2_rev3/Makefile b/usrp2/top/u2_rev3/Makefile index bfebcac8b..541f3264f 100644 --- a/usrp2/top/u2_rev3/Makefile +++ b/usrp2/top/u2_rev3/Makefile @@ -86,7 +86,16 @@ control_lib/wb_bridge_16_32.v \  control_lib/reset_sync.v \  control_lib/priority_enc.v \  control_lib/pic.v \ +vrt/vita_rx_control.v \ +vrt/vita_rx_framer.v \ +vrt/vita_tx_control.v \ +vrt/vita_tx_deframer.v \ +udp/udp_wrapper.v \ +udp/fifo19_rxrealign.v \ +udp/prot_eng_tx.v \ +udp/add_onescomp.v \  simple_gemac/simple_gemac_wrapper.v \ +simple_gemac/simple_gemac_wrapper19.v \  simple_gemac/simple_gemac.v \  simple_gemac/simple_gemac_wb.v \  simple_gemac/simple_gemac_tx.v \ @@ -107,11 +116,15 @@ control_lib/newfifo/buffer_pool.v \  control_lib/newfifo/fifo_2clock.v \  control_lib/newfifo/fifo_2clock_cascade.v \  control_lib/newfifo/ll8_shortfifo.v \ -control_lib/newfifo/ll8_to_fifo36.v \  control_lib/newfifo/fifo_short.v \  control_lib/newfifo/fifo_long.v \  control_lib/newfifo/fifo_cascade.v \  control_lib/newfifo/fifo36_to_ll8.v \ +control_lib/newfifo/ll8_to_fifo36.v \ +control_lib/newfifo/fifo19_to_ll8.v \ +control_lib/newfifo/ll8_to_fifo19.v \ +control_lib/newfifo/fifo36_to_fifo19.v \ +control_lib/newfifo/fifo19_to_fifo36.v \  control_lib/longfifo.v \  control_lib/shortfifo.v \  control_lib/medfifo.v \ @@ -121,6 +134,8 @@ coregen/fifo_xlnx_512x36_2clk.v \  coregen/fifo_xlnx_512x36_2clk.xco \  coregen/fifo_xlnx_64x36_2clk.v \  coregen/fifo_xlnx_64x36_2clk.xco \ +coregen/fifo_xlnx_16x19_2clk.v \ +coregen/fifo_xlnx_16x19_2clk.xco \  coregen/fifo_xlnx_16x40_2clk.v \  coregen/fifo_xlnx_16x40_2clk.xco \  extram/wb_zbt16_b.v \ @@ -175,10 +190,13 @@ serdes/serdes_fc_rx.v \  serdes/serdes_fc_tx.v \  serdes/serdes_rx.v \  serdes/serdes_tx.v \ +timing/time_64bit.v \ +timing/time_compare.v \  timing/time_receiver.v \  timing/time_sender.v \  timing/time_sync.v \  timing/timer.v \ +timing/simple_timer.v \  top/u2_core/u2_core.v \  top/u2_rev3/u2_rev3.ucf \  top/u2_rev3/u2_rev3.v  diff --git a/usrp2/top/u2_rev3/Makefile.udp b/usrp2/top/u2_rev3/Makefile.udp new file mode 100644 index 000000000..fa94c7bd1 --- /dev/null +++ b/usrp2/top/u2_rev3/Makefile.udp @@ -0,0 +1,268 @@ +# +# Copyright 2008 Ettus Research LLC +#  +# This file is part of GNU Radio +#  +# GNU Radio is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +#  +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the +# GNU General Public License for more details. +#  +# You should have received a copy of the GNU General Public License +# along with GNU Radio; see the file COPYING.  If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +#  + +################################################## +# xtclsh Shell and tcl Script Path +################################################## +#XTCLSH := /opt/Xilinx/10.1/ISE/bin/lin/xtclsh +XTCLSH := xtclsh +ISE_HELPER := ../tcl/ise_helper.tcl + +################################################## +# Project Setup +################################################## +BUILD_DIR := build-udp/ +export TOP_MODULE := u2_rev3 +export PROJ_FILE := $(BUILD_DIR)$(TOP_MODULE).ise + +################################################## +# Project Properties +################################################## +export PROJECT_PROPERTIES := \ +family Spartan3 \ +device xc3s2000 \ +package fg456 \ +speed -5 \ +top_level_module_type "HDL" \ +synthesis_tool "XST (VHDL/Verilog)" \ +simulator "ISE Simulator (VHDL/Verilog)" \ +"Preferred Language" "Verilog" \ +"Enable Message Filtering" FALSE \ +"Display Incremental Messages" FALSE  + +################################################## +# Sources +################################################## +export SOURCE_ROOT := ../../../ +export SOURCES := \ +control_lib/CRC16_D16.v \ +control_lib/atr_controller.v \ +control_lib/bin2gray.v \ +control_lib/dcache.v \ +control_lib/decoder_3_8.v \ +control_lib/dpram32.v \ +control_lib/gray2bin.v \ +control_lib/gray_send.v \ +control_lib/icache.v \ +control_lib/mux4.v \ +control_lib/mux8.v \ +control_lib/nsgpio.v \ +control_lib/ram_2port.v \ +control_lib/ram_harvard.v \ +control_lib/ram_harv_cache.v \ +control_lib/ram_loader.v \ +control_lib/setting_reg.v \ +control_lib/settings_bus.v \ +control_lib/settings_bus_crossclock.v \ +control_lib/srl.v \ +control_lib/system_control.v \ +control_lib/wb_1master.v \ +control_lib/wb_readback_mux.v \ +control_lib/simple_uart.v \ +control_lib/simple_uart_tx.v \ +control_lib/simple_uart_rx.v \ +control_lib/oneshot_2clk.v \ +control_lib/sd_spi.v \ +control_lib/sd_spi_wb.v \ +control_lib/wb_bridge_16_32.v \ +control_lib/reset_sync.v \ +control_lib/priority_enc.v \ +control_lib/pic.v \ +vrt/vita_rx_control.v \ +vrt/vita_rx_framer.v \ +vrt/vita_tx_control.v \ +vrt/vita_tx_deframer.v \ +udp/udp_wrapper.v \ +udp/fifo19_rxrealign.v \ +udp/prot_eng_tx.v \ +udp/add_onescomp.v \ +simple_gemac/simple_gemac_wrapper.v \ +simple_gemac/simple_gemac_wrapper19.v \ +simple_gemac/simple_gemac.v \ +simple_gemac/simple_gemac_wb.v \ +simple_gemac/simple_gemac_tx.v \ +simple_gemac/simple_gemac_rx.v \ +simple_gemac/crc.v \ +simple_gemac/delay_line.v \ +simple_gemac/flow_ctrl_tx.v \ +simple_gemac/flow_ctrl_rx.v \ +simple_gemac/address_filter.v \ +simple_gemac/ll8_to_txmac.v \ +simple_gemac/rxmac_to_ll8.v \ +simple_gemac/miim/eth_miim.v \ +simple_gemac/miim/eth_clockgen.v \ +simple_gemac/miim/eth_outputcontrol.v \ +simple_gemac/miim/eth_shiftreg.v \ +control_lib/newfifo/buffer_int.v \ +control_lib/newfifo/buffer_pool.v \ +control_lib/newfifo/fifo_2clock.v \ +control_lib/newfifo/fifo_2clock_cascade.v \ +control_lib/newfifo/ll8_shortfifo.v \ +control_lib/newfifo/fifo_short.v \ +control_lib/newfifo/fifo_long.v \ +control_lib/newfifo/fifo_cascade.v \ +control_lib/newfifo/fifo36_to_ll8.v \ +control_lib/newfifo/ll8_to_fifo36.v \ +control_lib/newfifo/fifo19_to_ll8.v \ +control_lib/newfifo/ll8_to_fifo19.v \ +control_lib/newfifo/fifo36_to_fifo19.v \ +control_lib/newfifo/fifo19_to_fifo36.v \ +control_lib/longfifo.v \ +control_lib/shortfifo.v \ +control_lib/medfifo.v \ +coregen/fifo_xlnx_2Kx36_2clk.v \ +coregen/fifo_xlnx_2Kx36_2clk.xco \ +coregen/fifo_xlnx_512x36_2clk.v \ +coregen/fifo_xlnx_512x36_2clk.xco \ +coregen/fifo_xlnx_64x36_2clk.v \ +coregen/fifo_xlnx_64x36_2clk.xco \ +coregen/fifo_xlnx_16x19_2clk.v \ +coregen/fifo_xlnx_16x19_2clk.xco \ +coregen/fifo_xlnx_16x40_2clk.v \ +coregen/fifo_xlnx_16x40_2clk.xco \ +extram/wb_zbt16_b.v \ +opencores/8b10b/decode_8b10b.v \ +opencores/8b10b/encode_8b10b.v \ +opencores/aemb/rtl/verilog/aeMB_bpcu.v \ +opencores/aemb/rtl/verilog/aeMB_core_BE.v \ +opencores/aemb/rtl/verilog/aeMB_ctrl.v \ +opencores/aemb/rtl/verilog/aeMB_edk32.v \ +opencores/aemb/rtl/verilog/aeMB_ibuf.v \ +opencores/aemb/rtl/verilog/aeMB_regf.v \ +opencores/aemb/rtl/verilog/aeMB_xecu.v \ +opencores/i2c/rtl/verilog/i2c_master_bit_ctrl.v \ +opencores/i2c/rtl/verilog/i2c_master_byte_ctrl.v \ +opencores/i2c/rtl/verilog/i2c_master_defines.v \ +opencores/i2c/rtl/verilog/i2c_master_top.v \ +opencores/i2c/rtl/verilog/timescale.v \ +opencores/spi/rtl/verilog/spi_clgen.v \ +opencores/spi/rtl/verilog/spi_defines.v \ +opencores/spi/rtl/verilog/spi_shift.v \ +opencores/spi/rtl/verilog/spi_top.v \ +opencores/spi/rtl/verilog/timescale.v \ +sdr_lib/acc.v \ +sdr_lib/add2.v \ +sdr_lib/add2_and_round.v \ +sdr_lib/add2_and_round_reg.v \ +sdr_lib/add2_reg.v \ +sdr_lib/cic_dec_shifter.v \ +sdr_lib/cic_decim.v \ +sdr_lib/cic_int_shifter.v \ +sdr_lib/cic_interp.v \ +sdr_lib/cic_strober.v \ +sdr_lib/clip.v \ +sdr_lib/clip_reg.v \ +sdr_lib/cordic.v \ +sdr_lib/cordic_z24.v \ +sdr_lib/cordic_stage.v \ +sdr_lib/dsp_core_rx_udp.v \ +sdr_lib/dsp_core_tx.v \ +sdr_lib/hb_dec.v \ +sdr_lib/hb_interp.v \ +sdr_lib/round.v \ +sdr_lib/round_reg.v \ +sdr_lib/rx_control.v \ +sdr_lib/rx_dcoffset.v \ +sdr_lib/sign_extend.v \ +sdr_lib/small_hb_dec.v \ +sdr_lib/small_hb_int.v \ +sdr_lib/tx_control.v \ +serdes/serdes.v \ +serdes/serdes_fc_rx.v \ +serdes/serdes_fc_tx.v \ +serdes/serdes_rx.v \ +serdes/serdes_tx.v \ +timing/time_64bit.v \ +timing/time_compare.v \ +timing/time_receiver.v \ +timing/time_sender.v \ +timing/time_sync.v \ +timing/timer.v \ +timing/simple_timer.v \ +top/u2_core/u2_core_udp.v \ +top/u2_rev3/u2_rev3.ucf \ +top/u2_rev3/u2_rev3.v  + +################################################## +# Process Properties +################################################## +export SYNTHESIZE_PROPERTIES := \ +"Number of Clock Buffers" 8 \ +"Pack I/O Registers into IOBs" Yes \ +"Optimization Effort" High \ +"Optimize Instantiated Primitives" TRUE \ +"Register Balancing" Yes \ +"Use Clock Enable" Auto \ +"Use Synchronous Reset" Auto \ +"Use Synchronous Set" Auto + +export TRANSLATE_PROPERTIES := \ +"Macro Search Path" "$(shell pwd)/../../coregen/" + +export MAP_PROPERTIES := \ +"Allow Logic Optimization Across Hierarchy" TRUE \ +"Map to Input Functions" 4 \ +"Optimization Strategy (Cover Mode)" Speed \ +"Pack I/O Registers/Latches into IOBs" "For Inputs and Outputs" \ +"Perform Timing-Driven Packing and Placement" TRUE \ +"Map Effort Level" High \ +"Extra Effort" Normal \ +"Combinatorial Logic Optimization" TRUE \ +"Register Duplication" TRUE + +export PLACE_ROUTE_PROPERTIES := \ +"Place & Route Effort Level (Overall)" High  + +export STATIC_TIMING_PROPERTIES := \ +"Number of Paths in Error/Verbose Report" 10 \ +"Report Type" "Error Report" + +export GEN_PROG_FILE_PROPERTIES := \ +"Configuration Rate" 6 \ +"Create Binary Configuration File" TRUE \ +"Done (Output Events)" 5 \ +"Enable Bitstream Compression" TRUE \ +"Enable Outputs (Output Events)" 6  + +export SIM_MODEL_PROPERTIES := "" + +################################################## +# Make Options +################################################## +all: +	@echo make proj, check, synth, bin, or clean + +proj: +	PROCESS_RUN="" $(XTCLSH) $(ISE_HELPER)	 + +check: +	PROCESS_RUN="Check Syntax" $(XTCLSH) $(ISE_HELPER)	 + +synth: +	PROCESS_RUN="Synthesize - XST" $(XTCLSH) $(ISE_HELPER)	 + +bin: +	PROCESS_RUN="Generate Programming File" $(XTCLSH) $(ISE_HELPER)		 + +clean: +	rm -rf $(BUILD_DIR) + + diff --git a/usrp2/udp/add_onescomp.v b/usrp2/udp/add_onescomp.v new file mode 100644 index 000000000..048842a86 --- /dev/null +++ b/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/usrp2/udp/fifo19_rxrealign.v b/usrp2/udp/fifo19_rxrealign.v new file mode 100644 index 000000000..35ad90951 --- /dev/null +++ b/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/usrp2/udp/prot_eng_rx.v b/usrp2/udp/prot_eng_rx.v new file mode 100644 index 000000000..5df158b2b --- /dev/null +++ b/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/usrp2/udp/prot_eng_tx.v b/usrp2/udp/prot_eng_tx.v new file mode 100644 index 000000000..9031011f7 --- /dev/null +++ b/usrp2/udp/prot_eng_tx.v @@ -0,0 +1,119 @@ + +// 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: +//             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 + 4;  // 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 last_hdr_line  = header_word[19]; +   wire ip_chk 	       = header_word[18]; +   wire ip_len 	       = header_word[17]; +   wire udp_len        = header_word[16]; +    +   // 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]; +		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(header_word[15:0]),.B(ip_length),.SUM(checksum)); + +   always @* +     if(ip_chk) +       //dataout_int 	<= header_word[15:0] ^ ip_length; +       dataout_int 	<= 16'hFFFF ^ checksum; +     else if(ip_len) +       dataout_int 	<= ip_length; +     else if(udp_len) +       dataout_int 	<= udp_length; +     else if(do_payload) +       dataout_int 	<= datain[15:0]; +     else +       dataout_int 	<= header_word[15:0]; +    +endmodule // prot_eng_tx diff --git a/usrp2/udp/prot_eng_tx_tb.v b/usrp2/udp/prot_eng_tx_tb.v new file mode 100644 index 000000000..e7ffeb5e1 --- /dev/null +++ b/usrp2/udp/prot_eng_tx_tb.v @@ -0,0 +1,167 @@ +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'h0001_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, {12'b0, 4'h0, 16'h0000}); +	WriteSREG(BASE+2, {12'b0, 4'h0, 16'hABCD}); +	WriteSREG(BASE+3, {12'b0, 4'h0, 16'h1234}); +	WriteSREG(BASE+4, {12'b0, 4'h8, 16'h5678}); +	WriteSREG(BASE+5, {12'b0, 4'h0, 16'hABCD}); +	WriteSREG(BASE+6, {12'b0, 4'h0, 16'hABCD}); +	WriteSREG(BASE+7, {12'b0, 4'h0, 16'hABCD}); +	WriteSREG(BASE+8, {12'b0, 4'h0, 16'hABCD}); +	WriteSREG(BASE+9, {12'b0, 4'h0, 16'hABCD}); +	@(posedge clk); +	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/usrp2/udp/udp_wrapper.v b/usrp2/udp/udp_wrapper.v new file mode 100644 index 000000000..f4c642615 --- /dev/null +++ b/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 diff --git a/usrp2/vrt/.gitignore b/usrp2/vrt/.gitignore new file mode 100644 index 000000000..446b2daae --- /dev/null +++ b/usrp2/vrt/.gitignore @@ -0,0 +1,4 @@ +vita_rx_tb +vita_tx_tb +*.vcd +*.sav diff --git a/usrp2/vrt/vita_rx.build b/usrp2/vrt/vita_rx.build new file mode 100755 index 000000000..f6d2d75a3 --- /dev/null +++ b/usrp2/vrt/vita_rx.build @@ -0,0 +1 @@ +iverilog -Wimplict -Wportbind -y ../models -y . -y ../control_lib/ -y ../control_lib/newfifo -y ../coregen -y /opt/Xilinx/10.1/ISE/verilog/src/XilinxCoreLib -y /opt/Xilinx/10.1/ISE/verilog/src/unisims/ -y ../timing -o vita_rx_tb vita_rx_tb.v diff --git a/usrp2/vrt/vita_rx_control.v b/usrp2/vrt/vita_rx_control.v new file mode 100644 index 000000000..669b8299d --- /dev/null +++ b/usrp2/vrt/vita_rx_control.v @@ -0,0 +1,180 @@ + +module vita_rx_control +  #(parameter BASE=0, +    parameter WIDTH=32) +   (input clk, input reset, input clear, +    input set_stb, input [7:0] set_addr, input [31:0] set_data, +     +    input [63:0] vita_time, +    output overrun, + +    // To vita_rx_framer +    output [4+64+WIDTH-1:0] sample_fifo_o, +    output sample_fifo_src_rdy_o, +    input sample_fifo_dst_rdy_i, +     +    // From DSP Core +    input [WIDTH-1:0] sample, +    output run, +    input strobe, +     +    output [31:0] debug_rx +    ); + +   // FIXME add TX Interruption (halt, pause, continue) functionality +    +   wire [63:0] 	  new_time; +   wire [31:0] 	  new_command; +   wire 	  sc_pre1, clear_int, clear_reg; + +   assign clear_int  = clear | clear_reg; +    +   wire [63:0] 	  rcvtime_pre; +   reg [63:0] 	  rcvtime; +   wire [29:0] 	  numlines_pre; +   wire 	  send_imm_pre, chain_pre; +   reg 		  send_imm, chain; +   wire 	  full_ctrl, read_ctrl, empty_ctrl, write_ctrl; +   reg 		  sc_pre2; +   wire [33:0] 	  fifo_line; +   reg [29:0] 	  lines_left; +   reg [2:0] 	  ibs_state; +   wire 	  now, early, late; +   wire 	  sample_fifo_in_rdy; +    +   setting_reg #(.my_addr(BASE)) sr_cmd +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(new_command),.changed()); + +   setting_reg #(.my_addr(BASE+1)) sr_time_h +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(new_time[63:32]),.changed()); +    +   setting_reg #(.my_addr(BASE+2)) sr_time_l +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(new_time[31:0]),.changed(sc_pre1)); +    +   setting_reg #(.my_addr(BASE+3)) sr_clear +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(),.changed(clear_reg)); + +   // FIFO to store commands sent from the settings bus +   always @(posedge clk) +     sc_pre2 		  <= sc_pre1; +   assign      write_ctrl  = sc_pre1 & ~sc_pre2; + +   wire [4:0]  command_queue_len; +   shortfifo #(.WIDTH(96)) commandfifo +     (.clk(clk),.rst(reset),.clear(clear_int), +      .datain({new_command,new_time}), .write(write_ctrl&~full_ctrl), .full(full_ctrl), +      .dataout({send_imm_pre,chain_pre,numlines_pre,rcvtime_pre}),  +      .read(read_ctrl), .empty(empty_ctrl), +      .occupied(command_queue_len), .space() ); +    +   reg [33:0]  pkt_fifo_line; + +   localparam IBS_IDLE = 0; +   localparam IBS_WAITING = 1; +   localparam IBS_RUNNING = 2; +   localparam IBS_OVERRUN = 4; +   localparam IBS_BROKENCHAIN = 5; +   localparam IBS_LATECMD = 6; + +   wire signal_cmd_done     = (lines_left == 1) & (~chain | (~empty_ctrl & (numlines_pre==0))); +   wire signal_overrun 	    = (ibs_state == IBS_OVERRUN); +   wire signal_brokenchain  = (ibs_state == IBS_BROKENCHAIN); +   wire signal_latecmd 	    = (ibs_state == IBS_LATECMD); + +   // Buffer of samples for while we're writing the packet headers +   wire [3:0] flags = {signal_overrun,signal_brokenchain,signal_latecmd,signal_cmd_done}; + +   wire       attempt_sample_write    = ((run & strobe) | (ibs_state==IBS_OVERRUN) | +				       (ibs_state==IBS_BROKENCHAIN) | (ibs_state==IBS_LATECMD)); +    +   fifo_short #(.WIDTH(4+64+WIDTH)) rx_sample_fifo +     (.clk(clk),.reset(reset),.clear(clear_int), +      .datain({flags,vita_time,sample}), .src_rdy_i(attempt_sample_write), .dst_rdy_o(sample_fifo_in_rdy), +      .dataout(sample_fifo_o),  +      .src_rdy_o(sample_fifo_src_rdy_o), .dst_rdy_i(sample_fifo_dst_rdy_i), +      .space(), .occupied() ); +    +   // Inband Signalling State Machine +   time_compare  +     time_compare (.time_now(vita_time), .trigger_time(rcvtime), .now(now), .early(early), .late(late)); +    +   wire too_late 	    = late & ~send_imm; +   wire go_now 		    = now | send_imm; +   wire full 		    = ~sample_fifo_in_rdy; +    +   always @(posedge clk) +     if(reset | clear_int) +       begin +	  ibs_state 	   <= IBS_IDLE; +	  lines_left 	   <= 0; +	  rcvtime 	   <= 0; +	  send_imm 	   <= 0; +	  chain 	   <= 0; +       end +     else +       case(ibs_state) +	 IBS_IDLE : +	   if(~empty_ctrl) +	     begin +		lines_left <= numlines_pre; +		rcvtime <= rcvtime_pre; +		ibs_state <= IBS_WAITING; +		send_imm <= send_imm_pre; +		chain <= chain_pre; +	     end +	 IBS_WAITING : +	   if(go_now) +	     ibs_state <= IBS_RUNNING; +	   else if(too_late) +	     ibs_state <= IBS_LATECMD; +	 IBS_RUNNING : +	   if(strobe) +	     if(full) +	       ibs_state 	     <= IBS_OVERRUN; +	     else +	       begin +		  lines_left 	     <= lines_left - 1; +		  if(lines_left == 1) +		    if(~chain) +		      ibs_state      <= IBS_IDLE; +		    else if(empty_ctrl) +		      ibs_state      <= IBS_BROKENCHAIN; +		    else +		      begin +			 lines_left  <= numlines_pre; +			 rcvtime     <= rcvtime_pre; +			 send_imm    <= send_imm_pre; +			 chain 	     <= chain_pre; +			 if(numlines_pre == 0)  // If we are told to stop here +			   ibs_state <= IBS_IDLE; +			 else +			   ibs_state <= IBS_RUNNING; +		      end +	       end // else: !if(full) +	 IBS_OVERRUN : +	   if(sample_fifo_in_rdy) +	     ibs_state <= IBS_IDLE; +	 IBS_LATECMD : +	   if(sample_fifo_in_rdy) +	     ibs_state <= IBS_IDLE; +	 IBS_BROKENCHAIN : +	   if(sample_fifo_in_rdy) +	     ibs_state <= IBS_IDLE; +       endcase // case(ibs_state) +    +   assign overrun = (ibs_state == IBS_OVERRUN); +   assign run = (ibs_state == IBS_RUNNING); + +   assign read_ctrl = ( (ibs_state == IBS_IDLE) | ((ibs_state == IBS_RUNNING) & strobe & ~full & (lines_left==1) & chain) ) +     & ~empty_ctrl; +    +   assign debug_rx = { { ibs_state[2:0], command_queue_len }, +		       { 8'd0 }, +		       { go_now, too_late, run, strobe, read_ctrl, write_ctrl, full_ctrl, empty_ctrl }, +		       { 2'b0, overrun, chain_pre, sample_fifo_in_rdy, attempt_sample_write, sample_fifo_src_rdy_o,sample_fifo_dst_rdy_i} }; +    +endmodule // rx_control diff --git a/usrp2/vrt/vita_rx_framer.v b/usrp2/vrt/vita_rx_framer.v new file mode 100644 index 000000000..f3a81664a --- /dev/null +++ b/usrp2/vrt/vita_rx_framer.v @@ -0,0 +1,199 @@ + +module vita_rx_framer +  #(parameter BASE=0, +    parameter MAXCHAN=1) +   (input clk, input reset, input clear, +    input set_stb, input [7:0] set_addr, input [31:0] set_data, +     +    // To FIFO interface of Buffer Pool +    output [35:0] data_o, +    input dst_rdy_i, +    output src_rdy_o, +     +    // From vita_rx_control +    input [4+64+(32*MAXCHAN)-1:0] sample_fifo_i, +    input sample_fifo_src_rdy_i, +    output sample_fifo_dst_rdy_o, +     +    // FIFO Levels +    output [15:0] fifo_occupied, +    output fifo_full, +    output fifo_empty, +     +    output [31:0] debug_rx +    ); + +   localparam SAMP_WIDTH  = 4+64+(32*MAXCHAN); +   reg [3:0] 	  sample_phase; +   wire [3:0] 	  numchan; +   wire [3:0] 	  flags_fifo_o = sample_fifo_i[SAMP_WIDTH-1:SAMP_WIDTH-4]; +   wire [63:0] 	  vita_time_fifo_o = sample_fifo_i[SAMP_WIDTH-5:SAMP_WIDTH-68]; + +   reg [31:0] 	  data_fifo_o; + +   // The tools won't synthesize properly without this kludge because of the variable +   // parameter length +    +   wire [127:0]   FIXED_WIDTH_KLUDGE = sample_fifo_i; +   always @* +     case(sample_phase) +       4'd0 : data_fifo_o = FIXED_WIDTH_KLUDGE[31:0]; +       4'd1 : data_fifo_o = FIXED_WIDTH_KLUDGE[63:32]; +       4'd2 : data_fifo_o = FIXED_WIDTH_KLUDGE[95:64]; +       4'd3 : data_fifo_o = FIXED_WIDTH_KLUDGE[127:96]; +       default : data_fifo_o = 32'hDEADBEEF; +     endcase // case (sample_phase) +    +   wire 	  clear_pkt_count, pkt_fifo_rdy, sample_fifo_in_rdy; +    +   wire [31:0] 	  vita_header, vita_streamid, vita_trailer; +   wire [15:0] 	  samples_per_packet; +    +   reg [33:0] 	  pkt_fifo_line; +   reg [3:0] 	  vita_state; +   reg [15:0] 	  sample_ctr; +   reg [3:0] 	  pkt_count; +    +   wire [15:0] 	  vita_pkt_len = samples_per_packet + 6; +   //wire [3:0] flags = {signal_overrun,signal_brokenchain,signal_latecmd,signal_cmd_done}; + +   wire 	  clear_reg; +   wire 	  clear_int  = clear | clear_reg; + +   setting_reg #(.my_addr(BASE+3)) sr_clear +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(),.changed(clear_reg)); + +   setting_reg #(.my_addr(BASE+4)) sr_header +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(vita_header),.changed()); + +   setting_reg #(.my_addr(BASE+5)) sr_streamid +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(vita_streamid),.changed(clear_pkt_count)); + +   setting_reg #(.my_addr(BASE+6)) sr_trailer +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(vita_trailer),.changed()); + +   setting_reg #(.my_addr(BASE+7)) sr_samples_per_pkt +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(samples_per_packet),.changed()); + +   setting_reg #(.my_addr(BASE+8), .at_reset(1)) sr_numchan +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(numchan),.changed()); + +   // Output FIFO for packetized data +   localparam VITA_IDLE 	 = 0; +   localparam VITA_HEADER 	 = 1; +   localparam VITA_STREAMID 	 = 2; +   localparam VITA_SECS 	 = 3; +   localparam VITA_TICS 	 = 4; +   localparam VITA_TICS2 	 = 5; +   localparam VITA_PAYLOAD 	 = 6; +   localparam VITA_TRAILER 	 = 7; +   localparam VITA_ERR_HEADER 	 = 9;  // All ERR at 4'b1000 or'ed with base +   localparam VITA_ERR_STREAMID  = 10; +   localparam VITA_ERR_SECS 	 = 11; +   localparam VITA_ERR_TICS 	 = 12; +   localparam VITA_ERR_TICS2 	 = 13; +   localparam VITA_ERR_PAYLOAD 	 = 14; +   localparam VITA_ERR_TRAILER 	 = 15; +       +   always @(posedge clk) +     if(reset | clear_pkt_count) +       pkt_count <= 0; +     else if((vita_state == VITA_TRAILER) & pkt_fifo_rdy) +       pkt_count <= pkt_count + 1; + +   always @* +     case(vita_state) +       VITA_HEADER, VITA_ERR_HEADER : pkt_fifo_line <= {2'b01,vita_header[31:20],pkt_count,vita_pkt_len}; +       VITA_STREAMID, VITA_ERR_STREAMID : pkt_fifo_line <= {2'b00,vita_streamid}; +       VITA_SECS, VITA_ERR_SECS : pkt_fifo_line <= {2'b00,vita_time_fifo_o[63:32]}; +       VITA_TICS, VITA_ERR_TICS : pkt_fifo_line <= {2'b00,32'd0}; +       VITA_TICS2, VITA_ERR_TICS2 : pkt_fifo_line <= {2'b00,vita_time_fifo_o[31:0]}; +       VITA_PAYLOAD : pkt_fifo_line <= {2'b00,data_fifo_o}; +       VITA_ERR_PAYLOAD : pkt_fifo_line <= {2'b00,28'd0,flags_fifo_o}; +       VITA_TRAILER : pkt_fifo_line <= {2'b10,vita_trailer}; +       VITA_ERR_TRAILER : pkt_fifo_line <= {2'b11,vita_trailer}; +       default : pkt_fifo_line <= 34'h0_FFFF_FFFF; +       endcase // case (vita_state) + +   always @(posedge clk) +     if(reset) +       begin +	  vita_state   <= VITA_IDLE; +	  sample_ctr   <= 0; +	  sample_phase <= 0; +       end +     else +       if(vita_state==VITA_IDLE) +	 begin +	    sample_ctr <= 1; +	    sample_phase <= 0; +	    if(sample_fifo_src_rdy_i) +	      if(|flags_fifo_o[3:1]) +		vita_state <= VITA_ERR_HEADER; +	      else +		vita_state <= VITA_HEADER; +	 end +       else if(pkt_fifo_rdy) +	 case(vita_state) +	   VITA_PAYLOAD : +	     if(sample_fifo_src_rdy_i) +	       begin +		  if(sample_phase == (numchan-4'd1)) +		    begin +		       sample_phase <= 0; +		       sample_ctr   <= sample_ctr + 1; +		       if(sample_ctr == samples_per_packet) +			 vita_state <= VITA_TRAILER; +		       if(|flags_fifo_o)   // end early if any flag is set +			 vita_state <= VITA_TRAILER; +		    end +		  else +		    sample_phase <= sample_phase + 1; +	       end +	   VITA_TRAILER, VITA_ERR_TRAILER : +	     vita_state <= VITA_IDLE; +	   default : +	     vita_state 	   <= vita_state + 1; +	 endcase // case (vita_state) + +   reg req_write_pkt_fifo; +   always @* +     case(vita_state) +       VITA_IDLE : +	 req_write_pkt_fifo <= 0; +       VITA_HEADER, VITA_STREAMID, VITA_SECS, VITA_TICS, VITA_TICS2, VITA_TRAILER : +	 req_write_pkt_fifo <= 1; +       VITA_PAYLOAD : +	 // Write if sample ready and no error flags +     	 req_write_pkt_fifo <= (sample_fifo_src_rdy_i & ~|flags_fifo_o[3:1]); +       VITA_ERR_HEADER, VITA_ERR_STREAMID, VITA_ERR_SECS, VITA_ERR_TICS, VITA_ERR_TICS2, VITA_ERR_PAYLOAD, VITA_ERR_TRAILER : +	 req_write_pkt_fifo <= 1; +       default : +	 req_write_pkt_fifo <= 0; +     endcase // case (vita_state) +    +   //wire req_write_pkt_fifo  = (vita_state != VITA_IDLE) & (sample_fifo_src_rdy_i | (vita_state != VITA_PAYLOAD)); +    +   // Short FIFO to buffer between us and the FIFOs outside +   fifo_short #(.WIDTH(34)) rx_pkt_fifo  +     (.clk(clk), .reset(reset), .clear(clear_int), +      .datain(pkt_fifo_line), .src_rdy_i(req_write_pkt_fifo), .dst_rdy_o(pkt_fifo_rdy), +      .dataout(data_o[33:0]), .src_rdy_o(src_rdy_o), .dst_rdy_i(dst_rdy_i), +      .space(),.occupied(fifo_occupied[4:0]) ); +   assign fifo_occupied[15:5] = 0; +   assign data_o[35:34] = 2'b00;  // Always write full lines +   assign sample_fifo_dst_rdy_o  = pkt_fifo_rdy &  +				   ( ((vita_state==VITA_PAYLOAD) &  +				      (sample_phase == (numchan-4'd1)) &  +				      ~|flags_fifo_o[3:1]) | +				     (vita_state==VITA_ERR_TRAILER)); +    +   assign debug_rx  = vita_state; +    +endmodule // rx_control diff --git a/usrp2/vrt/vita_rx_tb.v b/usrp2/vrt/vita_rx_tb.v new file mode 100644 index 000000000..b4fda9622 --- /dev/null +++ b/usrp2/vrt/vita_rx_tb.v @@ -0,0 +1,213 @@ + + +module vita_rx_tb; + +   localparam DECIM  = 8'd4; +   localparam MAXCHAN=4; +   localparam NUMCHAN=4; +    +   reg clk 	     = 0; +   reg reset 	     = 1; + +   initial #1000 reset = 0; +   always #50 clk = ~clk; + +   initial $dumpfile("vita_rx_tb.vcd"); +   initial $dumpvars(0,vita_rx_tb); + +   wire [(MAXCHAN*32)-1:0] sample; +   wire        strobe, run; +   wire [35:0] data_o; +   wire        src_rdy; +   reg 	       dst_rdy = 1; +   wire [63:0] vita_time; + +   reg 	       set_stb = 0; +   reg [7:0]   set_addr; +   reg [31:0]  set_data; +   wire        set_stb_dsp; +   wire [7:0]  set_addr_dsp; +   wire [31:0] set_data_dsp; + +   /* +   settings_bus_crossclock settings_bus_xclk_dsp +     (.clk_i(clk), .rst_i(reset), .set_stb_i(set_stb), .set_addr_i(set_addr), .set_data_i(set_data), +      .clk_o(clk), .rst_o(reset), .set_stb_o(set_stb_dsp), .set_addr_o(set_addr_dsp), .set_data_o(set_data_dsp)); +    */ +    +   wire        sample_dst_rdy, sample_src_rdy; +   //wire [99:0] sample_data_o; +   wire [64+4+(MAXCHAN*32)-1:0] sample_data_o; + +   vita_rx_control #(.BASE(0), .WIDTH(32*MAXCHAN)) vita_rx_control +     (.clk(clk), .reset(reset), .clear(0), +      .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), +      .vita_time(vita_time), .overrun(overrun), +      .sample_fifo_o(sample_data_o), .sample_fifo_dst_rdy_i(sample_dst_rdy), .sample_fifo_src_rdy_o(sample_src_rdy), +      .sample(sample), .run(run), .strobe(strobe)); + +   vita_rx_framer #(.BASE(0), .MAXCHAN(MAXCHAN)) vita_rx_framer +     (.clk(clk), .reset(reset), .clear(0), +      .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), +      .data_o(data_o), .dst_rdy_i(dst_rdy), .src_rdy_o(src_rdy), +      .sample_fifo_i(sample_data_o), .sample_fifo_dst_rdy_o(sample_dst_rdy), .sample_fifo_src_rdy_i(sample_src_rdy), +      .fifo_occupied(), .fifo_full(), .fifo_empty() ); +    +   rx_dsp_model rx_dsp_model +     (.clk(clk), .reset(reset), .run(run), .decim(DECIM), .strobe(strobe), .sample(sample[31:0])); + +   generate +      if(MAXCHAN>1) +	assign sample[(MAXCHAN*32)-1:32] = 0; +   endgenerate +    +   time_64bit #(.TICKS_PER_SEC(120000000), .BASE(0)) time_64bit +     (.clk(clk), .rst(reset), +      .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), +      .pps(0), .vita_time(vita_time)); +    +   always @(posedge clk) +     if(src_rdy & dst_rdy) +       begin +	  if(data_o[32] & ~data_o[33]) +	    begin +	       $display("RX-PKT-START %d",$time); +	       $display("       RX-PKT-DAT %x",data_o[31:0]); +	    end +	  else if(data_o[32] & data_o[33]) +	    begin +	       $display("       RX-PKT-DAT %x -- With ERR",data_o[31:0]); +	       $display("RX-PKT-ERR %d",$time); +	    end +	  else if(~data_o[32] & data_o[33]) +	    begin +	       $display("       RX-PKT-DAT %x",data_o[31:0]); +	       $display("RX-PKT-END %d",$time); +	    end +	  else +	    $display("       RX-PKT DAT %x",data_o[31:0]); +       end + +   initial  +     begin +	@(negedge reset); +	@(posedge clk); +	write_setting(4,32'hDEADBEEF);  // VITA header +	write_setting(5,32'hF00D1234);  // VITA streamid +	write_setting(6,32'h98765432);  // VITA trailer +	write_setting(7,8);  // Samples per VITA packet +	write_setting(8,NUMCHAN);  // Samples per VITA packet +	queue_rx_cmd(1,0,8,32'h0,32'h0);  // send imm, single packet +	queue_rx_cmd(1,0,16,32'h0,32'h0);  // send imm, 2 packets worth +	queue_rx_cmd(1,0,7,32'h0,32'h0);  // send imm, 1 short packet worth +	queue_rx_cmd(1,0,9,32'h0,32'h0);  // send imm, just longer than 1 packet +	 +	queue_rx_cmd(1,1,16,32'h0,32'h0);  // chained +	queue_rx_cmd(0,0,8,32'h0,32'h0);  // 2nd in chain +	 +	queue_rx_cmd(1,1,17,32'h0,32'h0);  // chained, odd length +	queue_rx_cmd(0,0,9,32'h0,32'h0);  // 2nd in chain, also odd length +	 +	queue_rx_cmd(0,0,8,32'h0,32'h340);  // send at, on time +	queue_rx_cmd(0,0,8,32'h0,32'h100);  // send at, but late + +	queue_rx_cmd(1,1,8,32'h0,32'h0);  // chained, but break chain +	#100000; +	$display("\nEnd chain with zero samples, shouldn't error\n"); +	queue_rx_cmd(1,1,8,32'h0,32'h0);  // chained +	queue_rx_cmd(0,0,0,32'h0,32'h0);  // end chain with zero samples, should keep us out of error +	#100000; + +	$display("\nEnd chain with zero samples on odd-length, shouldn't error\n"); +	queue_rx_cmd(1,1,14,32'h0,32'h0);  // chained +	queue_rx_cmd(0,0,0,32'h0,32'h0);  // end chain with zero samples, should keep us out of error +	#100000; +	$display("Should have gotten 14 samples and EOF by now\n"); +	 +	queue_rx_cmd(1,1,9,32'h0,32'h0);  // chained, but break chain, odd length +	#100000; +	dst_rdy <= 0;  // stop pulling out of fifo so we can get an overrun +	queue_rx_cmd(1,0,100,32'h0,32'h0);  // long enough to fill the fifos +	queue_rx_cmd(1,0,5,32'h0,32'h0);  // this command waits until the previous error packet is sent +	#100000; +	dst_rdy <= 1;  // restart the reads so we can see what we got +	#100000; +	dst_rdy <= 0;  // stop pulling out of fifo so we can get an overrun +	queue_rx_cmd(1,1,100,32'h0,32'h0);  // long enough to fill the fifos +	//queue_rx_cmd(1,0,5,32'h0,32'h0);  // this command waits until the previous error packet is sent +	#100000; +	@(posedge clk); +	dst_rdy <= 1; +	   +	#100000 $finish; +     end + +   task write_setting; +      input [7:0] addr; +      input [31:0] data; +      begin +	 set_stb <= 0; +	 @(posedge clk); +	 set_addr <= addr; +	 set_data <= data; +	 set_stb  <= 1; +	 @(posedge clk); +	 set_stb <= 0; +      end +   endtask // write_setting +    +   task queue_rx_cmd; +      input send_imm; +      input chain; +      input [29:0] lines; +      input [31:0] secs; +      input [31:0] tics; +      begin +	 write_setting(0,{send_imm,chain,lines}); +	 write_setting(1,secs); +	 write_setting(2,tics); +      end +   endtask // queue_rx_cmd +    +endmodule // rx_control_tb + +module rx_dsp_model +  (input clk, input reset, +   input run, +   input [7:0] decim, +   output strobe, +   output [31:0] sample); +    +   reg [15:0] 	  pktnum = 0; +   reg [15:0] 	 counter = 0; + +   reg 		 run_d1; +   always @(posedge clk) run_d1 <= run; +    +   always @(posedge clk) +     if(run & ~run_d1) +       begin +	  counter 		<= 0; +	  pktnum 		<= pktnum + 1; +       end +     else if(run & strobe) +       counter 			<= counter + 1; +        +   assign sample 		 = {pktnum,counter}; + +   reg [7:0] stb_ctr = 0; +    +   always @(posedge clk) +     if(reset) +       stb_ctr 	 <= 0; +     else if(run & ~run_d1) +       stb_ctr 	 <= 1; +     else if(run) +       if(stb_ctr == decim-1) +	 stb_ctr <= 0; +       else +	 stb_ctr <= stb_ctr + 1; + +   assign strobe  = stb_ctr == decim-1; +    +endmodule // rx_dsp_model diff --git a/usrp2/vrt/vita_tx.build b/usrp2/vrt/vita_tx.build new file mode 100755 index 000000000..902929c08 --- /dev/null +++ b/usrp2/vrt/vita_tx.build @@ -0,0 +1 @@ +iverilog -Wimplict -Wportbind -y ../sdr_lib -y ../models -y . -y ../control_lib/ -y ../control_lib/newfifo -y ../coregen -y /opt/Xilinx/10.1/ISE/verilog/src/XilinxCoreLib -y /opt/Xilinx/10.1/ISE/verilog/src/unisims/ -y ../timing -o vita_tx_tb vita_tx_tb.v diff --git a/usrp2/vrt/vita_tx_control.v b/usrp2/vrt/vita_tx_control.v new file mode 100644 index 000000000..bffc64e52 --- /dev/null +++ b/usrp2/vrt/vita_tx_control.v @@ -0,0 +1,98 @@ + +module vita_tx_control +  #(parameter BASE=0, +    parameter WIDTH=32) +   (input clk, input reset, input clear, +    input set_stb, input [7:0] set_addr, input [31:0] set_data, +     +    input [63:0] vita_time, +    output underrun, + +    // From vita_tx_deframer +    input [4+64+WIDTH-1:0] sample_fifo_i, +    input sample_fifo_src_rdy_i, +    output sample_fifo_dst_rdy_o, +     +    // To DSP Core +    output [WIDTH-1:0] sample, +    output run, +    input strobe, + +    output [31:0] debug +    ); +    +   assign sample = sample_fifo_i[4+64+WIDTH-1:4+64]; + +   wire [63:0] send_time = sample_fifo_i[63:0]; +   wire        eop = sample_fifo_i[64]; +   wire        eob = sample_fifo_i[65]; +   wire        sob = sample_fifo_i[66]; +   wire        send_at = sample_fifo_i[67]; +   wire        now, early, late, too_early; + +   // FIXME ignore too_early for now for timing reasons +   assign too_early = 0; +   time_compare  +     time_compare (.time_now(vita_time), .trigger_time(send_time), .now(now), .early(early),  +		   .late(late), .too_early()); +//		   .late(late), .too_early(too_early)); +    +   localparam IBS_IDLE = 0; +   localparam IBS_RUN = 1;  // FIXME do we need this? +   localparam IBS_CONT_BURST = 2; +   localparam IBS_UNDERRUN = 3; +   localparam IBS_UNDERRUN_DONE = 4; +    +   reg [2:0] ibs_state; + +   wire      clear_state; +   setting_reg #(.my_addr(BASE+1)) sr +     (.clk(clk),.rst(rst),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(),.changed(clear_state)); +    +   always @(posedge clk) +     if(reset | clear_state) +       ibs_state <= 0; +     else +       case(ibs_state) +	 IBS_IDLE : +	   if(sample_fifo_src_rdy_i) +	     if(~send_at | now) +	       ibs_state <= IBS_RUN; +	     else if(late | too_early) +	       ibs_state <= IBS_UNDERRUN; +	  +	 IBS_RUN : +	   if(strobe) +	     if(~sample_fifo_src_rdy_i) +	       ibs_state <= IBS_UNDERRUN; +	     else if(eop) +	       if(eob) +		 ibs_state <= IBS_IDLE; +	       else +		 ibs_state <= IBS_CONT_BURST; + +	 IBS_CONT_BURST : +	   if(strobe) +	     ibs_state <= IBS_UNDERRUN_DONE; +	   else if(sample_fifo_src_rdy_i) +	     ibs_state <= IBS_RUN; +	  +	 IBS_UNDERRUN : +	   if(sample_fifo_src_rdy_i & eop) +	     ibs_state <= IBS_UNDERRUN_DONE; + +	 IBS_UNDERRUN_DONE : +	   ; +       endcase // case (ibs_state) + +   assign sample_fifo_dst_rdy_o = (ibs_state == IBS_UNDERRUN) | (strobe & (ibs_state == IBS_RUN));  // FIXME also cleanout +   assign run = (ibs_state == IBS_RUN) | (ibs_state == IBS_CONT_BURST); +   assign underrun = (ibs_state == IBS_UNDERRUN_DONE); + +   assign debug = { { now,early,late,too_early,eop,eob,sob,send_at }, +		    { sample_fifo_src_rdy_i, sample_fifo_dst_rdy_o, strobe, run, underrun, ibs_state[2:0] }, +		    { 8'b0 }, +		    { 8'b0 } }; +    +endmodule // vita_tx_control diff --git a/usrp2/vrt/vita_tx_deframer.v b/usrp2/vrt/vita_tx_deframer.v new file mode 100644 index 000000000..220d3b061 --- /dev/null +++ b/usrp2/vrt/vita_tx_deframer.v @@ -0,0 +1,187 @@ + +module vita_tx_deframer +  #(parameter BASE=0, +    parameter MAXCHAN=1) +   (input clk, input reset, input clear, +    input set_stb, input [7:0] set_addr, input [31:0] set_data, +     +    // To FIFO interface of Buffer Pool +    input [35:0] data_i, +    input src_rdy_i, +    output dst_rdy_o, +     +    output [4+64+(32*MAXCHAN)-1:0] sample_fifo_o, +    output sample_fifo_src_rdy_o, +    input sample_fifo_dst_rdy_i, +     +    // FIFO Levels +    output [15:0] fifo_occupied, +    output fifo_full, +    output fifo_empty, +    output [31:0] debug +    ); + +   wire [1:0] numchan; +   setting_reg #(.my_addr(BASE), .at_reset(0)) sr_numchan +     (.clk(clk),.rst(reset),.strobe(set_stb),.addr(set_addr), +      .in(set_data),.out(numchan),.changed()); + +   reg [3:0] vita_state; +   wire      has_streamid, has_classid, has_secs, has_tics, has_trailer; +   assign has_streamid 	= (data_i[31:28]==4'b0001); +   assign has_classid 	= data_i[27]; +   assign has_secs 	= ~(data_i[23:22]==2'b00); +   assign has_tics 	= ~(data_i[21:20]==2'b00); +   assign has_trailer 	= data_i[26]; +   assign is_sob = data_i[25]; +   assign is_eob = data_i[24]; +   wire      eof = data_i[33]; +    +   reg 	     has_streamid_reg, has_classid_reg, has_secs_reg, has_tics_reg; +   reg 	     has_trailer_reg, is_sob_reg, is_eob_reg; + +   reg [15:0] pkt_len; +   reg [1:0]  vector_phase; +   wire       line_done; +    +   // Output FIFO for packetized data +   localparam VITA_HEADER 	 = 0; +   localparam VITA_STREAMID 	 = 1; +   localparam VITA_CLASSID 	 = 2; +   localparam VITA_CLASSID2 	 = 3; +   localparam VITA_SECS 	 = 4; +   localparam VITA_TICS 	 = 5; +   localparam VITA_TICS2 	 = 6; +   localparam VITA_PAYLOAD 	 = 7; +   localparam VITA_STORE         = 8; +   localparam VITA_TRAILER 	 = 9; + +   wire [15:0] hdr_len = 2 + has_streamid_reg + has_classid_reg + has_classid_reg + has_secs_reg +  +	       has_tics_reg + has_tics_reg + has_trailer_reg; + +   wire        eop = eof | (pkt_len==hdr_len);  // FIXME would ignoring eof allow larger VITA packets? +   wire        fifo_space; +    +   always @(posedge clk) +     if(reset | clear) +       begin +	  vita_state 		<= VITA_HEADER; +	  {has_streamid_reg, has_classid_reg, has_secs_reg, has_tics_reg, has_trailer_reg, is_sob_reg, is_eob_reg}  +	    <= 0; +       end +     else  +       if((vita_state == VITA_STORE) & fifo_space) +	 if(eop)   +	   if(has_trailer_reg) +	     vita_state <= VITA_TRAILER; +	   else +	     vita_state <= VITA_HEADER; +	 else +	   begin +	      vita_state <= VITA_PAYLOAD; +	      pkt_len <= pkt_len - 1; +	   end +       else if(src_rdy_i) +	 case(vita_state) +	   VITA_HEADER : +	     begin +		{has_streamid_reg, has_classid_reg, has_secs_reg, has_tics_reg, has_trailer_reg, is_sob_reg, is_eob_reg}  + 		  <= {has_streamid, has_classid, has_secs, has_tics, has_trailer, is_sob, is_eob}; +		pkt_len <= data_i[15:0]; +		vector_phase <= 0; +		if(has_streamid) +		  vita_state <= VITA_STREAMID; +		else if(has_classid) +		  vita_state <= VITA_CLASSID; +		else if(has_secs) +		  vita_state <= VITA_SECS; +		else if(has_tics) +		  vita_state <= VITA_TICS; +		else +		  vita_state <= VITA_PAYLOAD; +	     end // case: VITA_HEADER +	   VITA_STREAMID : +	     if(has_classid_reg) +	       vita_state <= VITA_CLASSID; +	     else if(has_secs_reg) +	       vita_state <= VITA_SECS; +	     else if(has_tics_reg) +	       vita_state <= VITA_TICS; +	     else +	       vita_state <= VITA_PAYLOAD; +	   VITA_CLASSID : +	     vita_state <= VITA_CLASSID2; +	   VITA_CLASSID2 : +	     if(has_secs_reg) +	       vita_state <= VITA_SECS; +	     else if(has_tics_reg) +	       vita_state <= VITA_TICS; +	     else +	       vita_state <= VITA_PAYLOAD; +	   VITA_SECS : +	     if(has_tics_reg) +	       vita_state <= VITA_TICS; +	     else +	       vita_state <= VITA_PAYLOAD; +	   VITA_TICS : +	     vita_state <= VITA_TICS2; +	   VITA_TICS2 : +	     vita_state <= VITA_PAYLOAD; +	   VITA_PAYLOAD : +	     if(line_done) +	       begin +		  vector_phase <= 0; +		  vita_state <= VITA_STORE; +	       end +	     else +	       vector_phase <= vector_phase + 1; +	   VITA_TRAILER : +	     vita_state <= VITA_HEADER; +	   VITA_STORE : +	     ; +	   default : +	     vita_state <= VITA_HEADER; +	 endcase // case (vita_state) + +   assign line_done = (vector_phase == numchan); +    +   wire [4+64+32*MAXCHAN-1:0] fifo_i; +   reg [63:0] 		      send_time; +   reg [31:0] 		      sample_a, sample_b, sample_c, sample_d; +    +   always @(posedge clk) +     case(vita_state) +       VITA_SECS : +	 send_time[63:32] <= data_i[31:0]; +       VITA_TICS2 : +	 send_time[31:0] <= data_i[31:0]; +       VITA_STORE, VITA_HEADER : +	 send_time[63:0] <= 64'd0; +     endcase // case (vita_state) +    +   always @(posedge clk) +     if(vita_state == VITA_PAYLOAD) +       case(vector_phase) +	 0: sample_a <= data_i[31:0]; +	 1: sample_b <= data_i[31:0]; +	 2: sample_c <= data_i[31:0]; +	 3: sample_d <= data_i[31:0]; +       endcase // case (vector_phase) +    +   wire 		      store = (vita_state == VITA_STORE); +   fifo_short #(.WIDTH(4+64+32*MAXCHAN)) short_tx_q +     (.clk(clk), .reset(reset), .clear(clear), +      .datain(fifo_i), .src_rdy_i(store), .dst_rdy_o(fifo_space), +      .dataout(sample_fifo_o), .src_rdy_o(sample_fifo_src_rdy_o), .dst_rdy_i(sample_fifo_dst_rdy_i) ); + +   // sob, eob, has_secs (send_at) ignored on all lines except first +   assign fifo_i = {sample_d,sample_c,sample_b,sample_a,has_secs_reg,is_sob_reg,is_eob_reg,eop,send_time}; + +   assign dst_rdy_o = ~(vita_state == VITA_PAYLOAD) & ~((vita_state==VITA_STORE)& ~fifo_space) ; + +   assign debug = { { 8'b0 }, +		    { 8'b0 }, +		    { eof, line_done, store, fifo_space, src_rdy_i, dst_rdy_o, vector_phase[1:0] }, +		    { has_secs_reg, is_sob_reg, is_eob_reg, eop, vita_state[3:0] } }; +    +endmodule // vita_tx_deframer diff --git a/usrp2/vrt/vita_tx_tb.v b/usrp2/vrt/vita_tx_tb.v new file mode 100644 index 000000000..0223d6850 --- /dev/null +++ b/usrp2/vrt/vita_tx_tb.v @@ -0,0 +1,164 @@ + + +module vita_tx_tb; + +   localparam DECIM  = 8'd4; +   localparam INTERP = 8'd4; +    +   localparam MAXCHAN=1; +   localparam NUMCHAN=1; +    +   reg clk 	     = 0; +   reg reset 	     = 1; + +   initial #1000 reset = 0; +   always #50 clk = ~clk; + +   initial $dumpfile("vita_tx_tb.vcd"); +   initial $dumpvars(0,vita_tx_tb); + +   wire [(MAXCHAN*32)-1:0] sample, sample_tx; +   wire        strobe, run; +   reg [35:0] data_o  = 36'h0; +   reg 	      src_rdy = 0; +   wire       dst_rdy; +    +   wire [63:0] vita_time; + +   reg 	       set_stb = 0; +   reg [7:0]   set_addr; +   reg [31:0]  set_data; +   wire        set_stb_dsp; +   wire [7:0]  set_addr_dsp; +   wire [31:0] set_data_dsp; + +   wire        sample_dst_rdy, sample_src_rdy; +   wire [64+4+(MAXCHAN*32)-1:0] sample_data_o, sample_data_tx; + +   time_64bit #(.TICKS_PER_SEC(100000000), .BASE(0)) time_64bit +     (.clk(clk), .rst(reset), +      .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), +      .pps(0), .vita_time(vita_time)); + +   wire [35:0] 			data_tx; +   wire 			src_rdy_tx, dst_rdy_tx; +   wire 			sample_dst_rdy_tx, sample_src_rdy_tx; +    +   fifo_long #(.WIDTH(36)) fifo_short +     (.clk(clk), .reset(reset), .clear(0), +      .datain(data_o), .src_rdy_i(src_rdy), .dst_rdy_o(dst_rdy), +      .dataout(data_tx), .src_rdy_o(src_rdy_tx), .dst_rdy_i(dst_rdy_tx)); +    +   vita_tx_deframer #(.BASE(16), .MAXCHAN(MAXCHAN)) vita_tx_deframer +     (.clk(clk), .reset(reset), .clear(0), +      .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), +      .data_i(data_tx), .dst_rdy_o(dst_rdy_tx), .src_rdy_i(src_rdy_tx), +      .sample_fifo_o(sample_data_tx),  +      .sample_fifo_dst_rdy_i(sample_dst_rdy_tx), .sample_fifo_src_rdy_o(sample_src_rdy_tx), +      .fifo_occupied(), .fifo_full(), .fifo_empty() ); + +   vita_tx_control #(.BASE(16), .WIDTH(MAXCHAN*32)) vita_tx_control +     (.clk(clk), .reset(reset), .clear(0), +      .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), +      .vita_time(vita_time), .underrun(underrun), +      .sample_fifo_i(sample_data_tx),  +      .sample_fifo_dst_rdy_o(sample_dst_rdy_tx), .sample_fifo_src_rdy_i(sample_src_rdy_tx), +      .sample(sample_tx), .run(run_tx), .strobe(strobe_tx)); +    +   tx_dsp_model tx_dsp_model +     (.clk(clk), .reset(reset), .run(run_tx), .interp(INTERP), .strobe(strobe_tx), .sample(sample_tx[31:0] )); + +   task write_setting; +      input [7:0] addr; +      input [31:0] data; +      begin +	 set_stb <= 0; +	 @(posedge clk); +	 set_addr <= addr; +	 set_data <= data; +	 set_stb  <= 1; +	 @(posedge clk); +	 set_stb <= 0; +      end +   endtask // write_setting +    +   initial  +     begin +	@(negedge reset); +	@(posedge clk); +	write_setting(4,32'h14900008);  // VITA header +	write_setting(5,32'hF00D1234);  // VITA streamid +	write_setting(6,32'h98765432);  // VITA trailer +	write_setting(7,8);  // Samples per VITA packet +	write_setting(8,NUMCHAN);  // Samples per VITA packet +	#10000; +	queue_vita_packets(32'h300, 106, 32'hF00D_1234, 32'h55AA_AA55); +	//queue_vita_packets(32'h300, 6, 32'hF00D_1234, 32'h0); +	queue_vita_packets(32'h600, 9, 32'h9876_ABCD, 32'h0); +	 +	#300000 $finish; +     end + +   task queue_vita_packets; +      input [31:0] sendtime; +      input [15:0] samples; +      input [15:0] word; +      input [31:0] trailer; +       +      reg [15:0]   i; +       +      begin +	 @(posedge clk); +	 src_rdy <= 1; +	 data_o <= {4'b0001,4'h1,1'b0,|trailer,2'h3,8'hF0,(16'd5+samples+|trailer)}; // header +	 @(posedge clk); +	 data_o <= {4'b0000,32'h0}; // streamid +	 @(posedge clk); +	 data_o <= {4'b0000,32'h0}; // SECS +	 @(posedge clk); +	 data_o <= {4'b0000,32'h0}; // TICS +	 @(posedge clk); +	 data_o <= {4'b0000,sendtime}; // TICS +	 @(posedge clk); + +	 for(i=0;i<samples-1;i=i+1) +	   begin +	      data_o <= {4'b0000,i,word}; // Payload +	      @(posedge clk); +	   end +	 if(trailer==0) +	   begin + 	      data_o <= {4'b0010,i,16'hBEEF}; // Last Payload +	      @(posedge clk); +	   end +	 else +	   begin + 	      data_o <= {4'b0000,i,16'hBEEF}; // Last Payload +	      @(posedge clk); + 	      data_o <= {4'b0010,trailer}; // Last Payload +	      @(posedge clk); +	   end +	 src_rdy <= 0; +	 @(posedge clk); +	  +      end +   endtask // queue_vita_packets +    +endmodule // vita_tx_tb + + +module tx_dsp_model +  (input clk, input reset, +   input run, +   input [7:0] interp, +   output strobe, +   input [31:0] sample); + +   cic_strober strober(.clock(clk), .reset(reset), .enable(run), .rate(interp), .strobe_fast(1), .strobe_slow(strobe)); + +   always @(posedge clk) +     if(strobe) +       $display("Time %d, Sent Sample %x",$time,sample); +    +    +endmodule // tx_dsp_model | 
