diff options
Diffstat (limited to 'fpga/usrp2')
| -rw-r--r-- | fpga/usrp2/gpmc/Makefile.srcs | 3 | ||||
| -rw-r--r-- | fpga/usrp2/gpmc/cross_clock_reader.v | 8 | ||||
| -rw-r--r-- | fpga/usrp2/gpmc/fifo_to_gpmc.v | 9 | ||||
| -rw-r--r-- | fpga/usrp2/gpmc/gpmc.v | 156 | ||||
| -rw-r--r-- | fpga/usrp2/gpmc/gpmc_to_fifo.v | 45 | ||||
| -rw-r--r-- | fpga/usrp2/gpmc/gpmc_wb.v | 79 | ||||
| -rw-r--r-- | fpga/usrp2/top/E1x0/E1x0.ucf (renamed from fpga/usrp2/top/E1x0/u1e.ucf) | 0 | ||||
| -rw-r--r-- | fpga/usrp2/top/E1x0/E1x0.v (renamed from fpga/usrp2/top/E1x0/u1e.v) | 105 | ||||
| -rw-r--r-- | fpga/usrp2/top/E1x0/Makefile.E100 | 8 | ||||
| -rw-r--r-- | fpga/usrp2/top/E1x0/Makefile.E110 | 8 | ||||
| -rwxr-xr-x | fpga/usrp2/top/E1x0/core_compile | 2 | ||||
| -rw-r--r-- | fpga/usrp2/top/E1x0/timing.ucf | 26 | ||||
| -rw-r--r-- | fpga/usrp2/top/E1x0/u1e_core.v | 494 | 
13 files changed, 219 insertions, 724 deletions
| diff --git a/fpga/usrp2/gpmc/Makefile.srcs b/fpga/usrp2/gpmc/Makefile.srcs index 4c6a1b4a2..39b37db58 100644 --- a/fpga/usrp2/gpmc/Makefile.srcs +++ b/fpga/usrp2/gpmc/Makefile.srcs @@ -1,5 +1,5 @@  # -# Copyright 2010-2011 Ettus Research LLC +# Copyright 2010-2012 Ettus Research LLC  #  ################################################## @@ -10,5 +10,4 @@ cross_clock_reader.v \  fifo_to_gpmc.v \  gpmc.v \  gpmc_to_fifo.v \ -gpmc_wb.v \  )) diff --git a/fpga/usrp2/gpmc/cross_clock_reader.v b/fpga/usrp2/gpmc/cross_clock_reader.v index a8366badc..b4cdb79c5 100644 --- a/fpga/usrp2/gpmc/cross_clock_reader.v +++ b/fpga/usrp2/gpmc/cross_clock_reader.v @@ -27,18 +27,20 @@ module cross_clock_reader      );      reg [WIDTH-1:0] shadow0, shadow1; +    reg [2:0] count;      always @(posedge clk) begin          if (rst) begin              out <= DEFAULT;              shadow0 <= DEFAULT;              shadow1 <= DEFAULT; +            count <= 0;          end -        else if (shadow0 == shadow1) begin -            out <= shadow1; -        end +        else if (shadow0 == shadow1) count <= count + 1; +        else count <= 0;          shadow0 <= in;          shadow1 <= shadow0; +        if (count == 3'b111) out <= shadow1;      end  endmodule //cross_clock_reader diff --git a/fpga/usrp2/gpmc/fifo_to_gpmc.v b/fpga/usrp2/gpmc/fifo_to_gpmc.v index 42c71d2d6..27252b970 100644 --- a/fpga/usrp2/gpmc/fifo_to_gpmc.v +++ b/fpga/usrp2/gpmc/fifo_to_gpmc.v @@ -1,5 +1,5 @@  // -// Copyright 2011 Ettus Research LLC +// Copyright 2011-2012 Ettus Research LLC  //  // This program is free software: you can redistribute it and/or modify  // it under the terms of the GNU General Public License as published by @@ -39,7 +39,7 @@  ////////////////////////////////////////////////////////////////////////  module fifo_to_gpmc -  #(parameter PTR_WIDTH = 2, parameter ADDR_WIDTH = 10) +  #(parameter PTR_WIDTH = 2, parameter ADDR_WIDTH = 10, parameter LAST_ADDR = 10'h3ff)    (input clk, input reset, input clear, input arst,     input [17:0] data_i, input src_rdy_i, output dst_rdy_o,     output [15:0] EM_D, input [ADDR_WIDTH:1] EM_A, input EM_CLK, input EM_OE, @@ -82,14 +82,15 @@ module fifo_to_gpmc              end              GPMC_STATE_EMPTY: begin -                if (EM_A == 10'h3ff) begin +                if (EM_A == LAST_ADDR) begin                      gpmc_state <= GPMC_STATE_START;                      gpmc_ptr <= next_gpmc_ptr; +                    addr <= 0;                  end              end              endcase //gpmc_state -        end //EM_WE +        end //EM_OE      end //always      //------------------------------------------------------------------ diff --git a/fpga/usrp2/gpmc/gpmc.v b/fpga/usrp2/gpmc/gpmc.v index a5d4db466..2ba69d184 100644 --- a/fpga/usrp2/gpmc/gpmc.v +++ b/fpga/usrp2/gpmc/gpmc.v @@ -1,5 +1,5 @@  // -// Copyright 2011 Ettus Research LLC +// Copyright 2011-2012 Ettus Research LLC  //  // This program is free software: you can redistribute it and/or modify  // it under the terms of the GNU General Public License as published by @@ -18,7 +18,7 @@  //////////////////////////////////////////////////////////////////////////////////  module gpmc -  #(parameter TXFIFOSIZE = 11,  +  #(parameter TXFIFOSIZE = 11,      parameter RXFIFOSIZE = 11,      parameter ADDR_WIDTH = 10,      parameter BUSDEBUG = 1) @@ -26,57 +26,51 @@ module gpmc      input arst,      input EM_CLK, inout [15:0] EM_D, input [ADDR_WIDTH:1] EM_A, input [1:0] EM_NBE,      input EM_WAIT0, input EM_NCS4, input EM_NCS6, input EM_NWE, input EM_NOE, -     +      // GPIOs for FIFO signalling -    output rx_have_data, output tx_have_space, -     -    // Wishbone signals -    input wb_clk, input wb_rst, -    output [ADDR_WIDTH:0] wb_adr_o, output [15:0] wb_dat_mosi, input [15:0] wb_dat_miso, -    output [1:0] wb_sel_o, output wb_cyc_o, output wb_stb_o, output wb_we_o, input wb_ack_i, -     +    output rx_have_data, output tx_have_space, output resp_have_data, +      // FIFO interface -    input fifo_clk, input fifo_rst, input clear_tx, input clear_rx, -    output [35:0] tx_data_o, output tx_src_rdy_o, input tx_dst_rdy_i, -    input [35:0] rx_data_i, input rx_src_rdy_i, output rx_dst_rdy_o, +    input fifo_clk, input fifo_rst, +    output [35:0] tx_data, output tx_src_rdy, input tx_dst_rdy, +    input [35:0] rx_data, input rx_src_rdy, output rx_dst_rdy, +    output [35:0] ctrl_data, output ctrl_src_rdy, input ctrl_dst_rdy, +    input [35:0] resp_data, input resp_src_rdy, output resp_dst_rdy, -    output tx_underrun, output rx_overrun, -    input [7:0] test_rate, input [3:0] test_ctrl,      output [31:0] debug      ); -   wire 	  EM_output_enable = (~EM_NOE & (~EM_NCS4 | ~EM_NCS6)); -   wire [15:0] 	  EM_D_fifo; -   wire [15:0] 	  EM_D_wb; +   wire EM_output_enable = (~EM_NOE & (~EM_NCS4 | ~EM_NCS6)); +   wire [15:0] 	  EM_D_data; +   wire [15:0] 	  EM_D_ctrl; -   assign EM_D = ~EM_output_enable ? 16'bz : ~EM_NCS4 ? EM_D_fifo : EM_D_wb; +   assign EM_D = ~EM_output_enable ? 16'bz : ~EM_NCS4 ? EM_D_data : EM_D_ctrl;     // CS4 is RAM_2PORT for DATA PATH (high-speed data)     //    Writes go into one RAM, reads come from the other -   // CS6 is for CONTROL PATH (wishbone) +   // CS6 is for CONTROL PATH (slow)     // ////////////////////////////////////////////     // TX Data Path     wire [17:0] 	  tx18_data;     wire 	  tx18_src_rdy, tx18_dst_rdy; -   wire [35:0] 	  tx_data, txb_data; -   wire 	  tx_src_rdy, tx_dst_rdy; +   wire [35:0] 	  txb_data;     wire 	  txb_src_rdy, txb_dst_rdy;     gpmc_to_fifo #(.ADDR_WIDTH(ADDR_WIDTH)) gpmc_to_fifo       (.EM_D(EM_D), .EM_A(EM_A), .EM_CLK(EM_CLK), .EM_WE(~EM_NCS4 & ~EM_NWE), -      .clk(fifo_clk), .reset(fifo_rst), .clear(clear_tx), .arst(fifo_rst | clear_tx | arst), +      .clk(fifo_clk), .reset(fifo_rst), .clear(1'b0), .arst(fifo_rst | arst),        .data_o(tx18_data), .src_rdy_o(tx18_src_rdy), .dst_rdy_i(tx18_dst_rdy),        .have_space(tx_have_space));     fifo19_to_fifo36 #(.LE(1)) f19_to_f36   // Little endian because ARM is LE -     (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_tx), +     (.clk(fifo_clk), .reset(fifo_rst), .clear(1'b0),        .f19_datain({1'b0,tx18_data}), .f19_src_rdy_i(tx18_src_rdy), .f19_dst_rdy_o(tx18_dst_rdy),        .f36_dataout(txb_data), .f36_src_rdy_o(txb_src_rdy), .f36_dst_rdy_i(txb_dst_rdy));     fifo_cascade #(.WIDTH(36), .SIZE(TXFIFOSIZE)) tx_buffering( -        .clk(fifo_clk), .reset(fifo_rst), .clear(clear_tx), +        .clk(fifo_clk), .reset(fifo_rst), .clear(1'b0),          .datain(txb_data), .src_rdy_i(txb_src_rdy), .dst_rdy_o(txb_dst_rdy),          .dataout(tx_data), .src_rdy_o(tx_src_rdy), .dst_rdy_i(tx_dst_rdy)     ); @@ -86,74 +80,88 @@ module gpmc     wire [17:0] 	  rx18_data;     wire 	  rx18_src_rdy, rx18_dst_rdy; -   wire [35:0] 	  rx_data, rxb_data; -   wire 	  rx_src_rdy, rx_dst_rdy; +   wire [35:0] 	  rxb_data;     wire 	  rxb_src_rdy, rxb_dst_rdy;     wire 	  dummy;     fifo_cascade #(.WIDTH(36), .SIZE(RXFIFOSIZE)) rx_buffering( -        .clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), +        .clk(fifo_clk), .reset(fifo_rst), .clear(1'b0),          .datain(rx_data), .src_rdy_i(rx_src_rdy), .dst_rdy_o(rx_dst_rdy),          .dataout(rxb_data), .src_rdy_o(rxb_src_rdy), .dst_rdy_i(rxb_dst_rdy)     );     fifo36_to_fifo19 #(.LE(1)) f36_to_f19   // Little endian because ARM is LE -     (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), +     (.clk(fifo_clk), .reset(fifo_rst), .clear(1'b0),        .f36_datain(rxb_data), .f36_src_rdy_i(rxb_src_rdy), .f36_dst_rdy_o(rxb_dst_rdy),        .f19_dataout({dummy,rx18_data}), .f19_src_rdy_o(rx18_src_rdy), .f19_dst_rdy_i(rx18_dst_rdy) ); -   fifo_to_gpmc #(.ADDR_WIDTH(ADDR_WIDTH)) fifo_to_gpmc -     (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), .arst(fifo_rst | clear_rx | arst), +   fifo_to_gpmc #(.ADDR_WIDTH(ADDR_WIDTH), .LAST_ADDR(10'h3ff)) fifo_to_gpmc +     (.clk(fifo_clk), .reset(fifo_rst), .clear(1'b0), .arst(fifo_rst | arst),        .data_i(rx18_data), .src_rdy_i(rx18_src_rdy), .dst_rdy_o(rx18_dst_rdy), -      .EM_D(EM_D_fifo), .EM_A(EM_A), .EM_CLK(EM_CLK), .EM_OE(~EM_NCS4 & ~EM_NOE), +      .EM_D(EM_D_data), .EM_A(EM_A), .EM_CLK(EM_CLK), .EM_OE(~EM_NCS4 & ~EM_NOE),        .data_available(rx_have_data));     // ////////////////////////////////////////////     // Control path on CS6 -    -   gpmc_wb gpmc_wb -     (.EM_CLK(EM_CLK), .EM_D_in(EM_D), .EM_D_out(EM_D_wb), .EM_A(EM_A), .EM_NBE(EM_NBE), -      .EM_WE(~EM_NCS6 & ~EM_NWE), .EM_OE(~EM_NCS6 & ~EM_NOE), -      .wb_clk(wb_clk), .wb_rst(wb_rst), -      .wb_adr_o(wb_adr_o), .wb_dat_mosi(wb_dat_mosi), .wb_dat_miso(wb_dat_miso), -      .wb_sel_o(wb_sel_o), .wb_cyc_o(wb_cyc_o), .wb_stb_o(wb_stb_o), .wb_we_o(wb_we_o), -      .wb_ack_i(wb_ack_i) ); + +   // //////////////////////////////////////////////////////////////////// +   // CTRL TX Data Path + +   wire [17:0] 	  ctrl18_data; +   wire 	  ctrl18_src_rdy, ctrl18_dst_rdy; +   wire [35:0] 	  ctrlb_data; +   wire 	  ctrlb_src_rdy, ctrlb_dst_rdy; + +   gpmc_to_fifo #(.PTR_WIDTH(5), .ADDR_WIDTH(5)) ctrl_gpmc_to_fifo +     (.EM_D(EM_D), .EM_A(EM_A[5:1]), .EM_CLK(EM_CLK), .EM_WE(~EM_NCS6 & ~EM_NWE & (EM_A[ADDR_WIDTH:6] == 0)), +      .clk(fifo_clk), .reset(fifo_rst), .clear(1'b0), .arst(fifo_rst | arst), +      .data_o(ctrl18_data), .src_rdy_o(ctrl18_src_rdy), .dst_rdy_i(ctrl18_dst_rdy), +      .have_space(/*always*/)); + +   fifo19_to_fifo36 #(.LE(1)) ctrl_f19_to_f36   // Little endian because ARM is LE +     (.clk(fifo_clk), .reset(fifo_rst), .clear(1'b0), +      .f19_datain({1'b0,ctrl18_data}), .f19_src_rdy_i(ctrl18_src_rdy), .f19_dst_rdy_o(ctrl18_dst_rdy), +      .f36_dataout(ctrlb_data), .f36_src_rdy_o(ctrlb_src_rdy), .f36_dst_rdy_i(ctrlb_dst_rdy)); + +   fifo_cascade #(.WIDTH(36), .SIZE(9)) ctrl_buffering( +        .clk(fifo_clk), .reset(fifo_rst), .clear(1'b0), +        .datain(ctrlb_data), .src_rdy_i(ctrlb_src_rdy), .dst_rdy_o(ctrlb_dst_rdy), +        .dataout(ctrl_data), .src_rdy_o(ctrl_src_rdy), .dst_rdy_i(ctrl_dst_rdy) +   );     // //////////////////////////////////////////// -   // Test support, traffic generator, loopback, etc. - -   // RX side muxes test data into the same stream -   wire [35:0] loopbackrx_data, testrx_data; -   wire [35:0] loopbacktx_data, testtx_data; -   wire        loopbackrx_src_rdy, loopbackrx_dst_rdy; -   wire        loopbacktx_src_rdy, loopbacktx_dst_rdy; -   wire        sel_testtx = test_ctrl[0]; - -   fifo36_mux rx_test_mux_lvl_2 -     (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), -      .data0_i(loopbackrx_data), .src0_rdy_i(loopbackrx_src_rdy), .dst0_rdy_o(loopbackrx_dst_rdy), -      .data1_i(rx_data_i), .src1_rdy_i(rx_src_rdy_i), .dst1_rdy_o(rx_dst_rdy_o), -      .data_o(rx_data), .src_rdy_o(rx_src_rdy), .dst_rdy_i(rx_dst_rdy)); - -   fifo_short #(.WIDTH(36)) loopback_fifo -     (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_tx | clear_rx), -      .datain(loopbacktx_data), .src_rdy_i(loopbacktx_src_rdy), .dst_rdy_o(loopbacktx_dst_rdy), -      .dataout(loopbackrx_data), .src_rdy_o(loopbackrx_src_rdy), .dst_rdy_i(loopbackrx_dst_rdy)); - -   // Crossbar used as a demux for switching TX stream to main DSP or to test logic -   crossbar36 tx_crossbar_lvl_1 -     (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_tx), -      .cross(sel_testtx), -      .data0_i(tx_data), .src0_rdy_i(tx_src_rdy), .dst0_rdy_o(tx_dst_rdy), -      .data1_i(tx_data), .src1_rdy_i(1'b0), .dst1_rdy_o(),  // No 2nd input -      .data0_o(tx_data_o), .src0_rdy_o(tx_src_rdy_o), .dst0_rdy_i(tx_dst_rdy_i), -      .data1_o(loopbacktx_data), .src1_rdy_o(loopbacktx_src_rdy), .dst1_rdy_i(loopbacktx_dst_rdy) ); - -   assign debug = { -        EM_D, //16 +   // CTRL RX Data Path + +   wire [17:0] 	  resp18_data; +   wire 	  resp18_src_rdy, resp18_dst_rdy; +   wire [35:0] 	  respb_data; +   wire 	  respb_src_rdy, respb_dst_rdy; +   wire 	  resp_dummy; + +   fifo_cascade #(.WIDTH(36), .SIZE(9)) resp_buffering( +        .clk(fifo_clk), .reset(fifo_rst), .clear(1'b0), +        .datain(resp_data), .src_rdy_i(resp_src_rdy), .dst_rdy_o(resp_dst_rdy), +        .dataout(respb_data), .src_rdy_o(respb_src_rdy), .dst_rdy_i(respb_dst_rdy) +   ); + +   fifo36_to_fifo19 #(.LE(1)) resp_f36_to_f19   // Little endian because ARM is LE +     (.clk(fifo_clk), .reset(fifo_rst), .clear(1'b0), +      .f36_datain(respb_data), .f36_src_rdy_i(respb_src_rdy), .f36_dst_rdy_o(respb_dst_rdy), +      .f19_dataout({resp_dummy,resp18_data}), .f19_src_rdy_o(resp18_src_rdy), .f19_dst_rdy_i(resp18_dst_rdy) ); + +   fifo_to_gpmc #(.ADDR_WIDTH(ADDR_WIDTH), .LAST_ADDR(10'h00f)) resp_fifo_to_gpmc +     (.clk(fifo_clk), .reset(fifo_rst), .clear(1'b0), .arst(fifo_rst | arst), +      .data_i(resp18_data), .src_rdy_i(resp18_src_rdy), .dst_rdy_o(resp18_dst_rdy), +      .EM_D(EM_D_ctrl), .EM_A(EM_A), .EM_CLK(EM_CLK), .EM_OE(~EM_NCS6 & ~EM_NOE), +      .data_available(resp_have_data)); + +    assign debug = { +        EM_D, +        //resp18_data[15:0], //16          EM_A, //10 -        EM_CLK, EM_NCS4, EM_NWE, EM_NOE, //4 -        EM_NCS6, wb_ack_i -   }; +        //resp18_data[17:16], resp18_src_rdy, resp18_dst_rdy, //4 +        EM_NCS4, EM_NCS6, EM_NWE, EM_NOE, //4 +        EM_CLK, resp_have_data //2 +    };  endmodule // gpmc diff --git a/fpga/usrp2/gpmc/gpmc_to_fifo.v b/fpga/usrp2/gpmc/gpmc_to_fifo.v index cfc5aaa8b..680095620 100644 --- a/fpga/usrp2/gpmc/gpmc_to_fifo.v +++ b/fpga/usrp2/gpmc/gpmc_to_fifo.v @@ -1,5 +1,5 @@  // -// Copyright 2011 Ettus Research LLC +// Copyright 2011-2012 Ettus Research LLC  //  // This program is free software: you can redistribute it and/or modify  // it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@  // The GPMC is asynchronously alerted when a BRAM page is available.  //  // EM_CLK: -// A GPMC read transaction consists of one EM_CLK cycle (idle low). +// A GPMC write transaction consists of one EM_CLK cycle (idle low).  //  // EM_WE:  // Write enable is actually the combination of ~NWE & ~NCS. @@ -36,7 +36,7 @@  ////////////////////////////////////////////////////////////////////////  module gpmc_to_fifo -  #(parameter PTR_WIDTH = 2, parameter ADDR_WIDTH = 10) +  #(parameter PTR_WIDTH = 2, parameter ADDR_WIDTH = 10, parameter XFER_OFFSET = 2)    (input [15:0] EM_D, input [ADDR_WIDTH:1] EM_A, input EM_CLK, input EM_WE,     input clk, input reset, input clear, input arst,     output [17:0] data_o, output src_rdy_o, input dst_rdy_i, @@ -45,17 +45,20 @@ module gpmc_to_fifo      //states for the GPMC side of things      wire [17:0] data_i;      reg gpmc_state; -    reg [ADDR_WIDTH:1] last_addr; +    reg [15:0] vita_len; +    reg [ADDR_WIDTH:1] addr; +    wire [ADDR_WIDTH:1] last_addr = {vita_len[ADDR_WIDTH-2:0], 1'b0} - 1'b1 + XFER_OFFSET;      reg [PTR_WIDTH:0] gpmc_ptr, next_gpmc_ptr;      localparam GPMC_STATE_START = 0;      localparam GPMC_STATE_FILL = 1;      //states for the FIFO side of things -    reg fifo_state; +    reg [1:0] fifo_state;      reg [ADDR_WIDTH-1:0] counter;      reg [PTR_WIDTH:0] fifo_ptr;      localparam FIFO_STATE_CLAIM = 0;      localparam FIFO_STATE_EMPTY = 1; +    localparam FIFO_STATE_PRE = 2;      //------------------------------------------------------------------      // State machine to control the data from GPMC to BRAM @@ -65,14 +68,16 @@ module gpmc_to_fifo              gpmc_state <= GPMC_STATE_START;              gpmc_ptr <= 0;              next_gpmc_ptr <= 0; +            addr <= 0;          end          else if (EM_WE) begin +            addr <= EM_A + 1;              case(gpmc_state)              GPMC_STATE_START: begin -                if (EM_A == 2) begin +                if (EM_A == XFER_OFFSET) begin                      gpmc_state <= GPMC_STATE_FILL; -                    last_addr <= {EM_D[ADDR_WIDTH-2:0], 1'b0} - 1'b1 + 2; +                    vita_len <= EM_D;                      next_gpmc_ptr <= gpmc_ptr + 1;                  end              end @@ -81,6 +86,7 @@ module gpmc_to_fifo                  if (data_i[17]) begin                      gpmc_state <= GPMC_STATE_START;                      gpmc_ptr <= next_gpmc_ptr; +                    addr <= 0;                  end              end @@ -105,6 +111,7 @@ module gpmc_to_fifo      cross_clock_reader #(.WIDTH(PTR_WIDTH+1)) read_next_gpmc_ptr          (.clk(clk), .rst(reset | clear), .in(next_gpmc_ptr), .out(safe_next_gpmc_ptr)); +    wire [PTR_WIDTH:0] fifo_ptr_next = fifo_ptr + 1;      always @(posedge clk)          if (reset | clear) have_space <= 0;          else               have_space <= (fifo_ptr ^ (1 << PTR_WIDTH)) != safe_next_gpmc_ptr; @@ -116,22 +123,28 @@ module gpmc_to_fifo          if (reset | clear) begin              fifo_state <= FIFO_STATE_CLAIM;              fifo_ptr <= 0; -            counter <= 2; +            counter <= XFER_OFFSET;          end          else begin              case(fifo_state)              FIFO_STATE_CLAIM: begin -                if (bram_available_to_empty) fifo_state <= FIFO_STATE_EMPTY; -                counter <= 2; +                if (bram_available_to_empty && data_o[16]) fifo_state <= FIFO_STATE_PRE; +                counter <= XFER_OFFSET; +            end + +            FIFO_STATE_PRE: begin +                fifo_state <= FIFO_STATE_EMPTY; +                counter <= counter + 1;              end              FIFO_STATE_EMPTY: begin                  if (src_rdy_o && dst_rdy_i && data_o[17]) begin                      fifo_state <= FIFO_STATE_CLAIM;                      fifo_ptr <= fifo_ptr + 1; +                    counter <= XFER_OFFSET;                  end -                if (src_rdy_o && dst_rdy_i) begin +                else if (src_rdy_o && dst_rdy_i) begin                      counter <= counter + 1;                  end              end @@ -140,18 +153,20 @@ module gpmc_to_fifo          end      end //always +    wire enable = (fifo_state != FIFO_STATE_EMPTY) || dst_rdy_i; +      assign src_rdy_o = fifo_state == FIFO_STATE_EMPTY;      //assign data and frame bits to bram input      assign data_i[15:0] = EM_D; -    assign data_i[16] = (gpmc_state == GPMC_STATE_START); -    assign data_i[17] = (EM_A == last_addr); +    assign data_i[16] = (addr == XFER_OFFSET); +    assign data_i[17] = (addr == last_addr);      //instantiate dual ported bram for async read + write      ram_2port #(.DWIDTH(18),.AWIDTH(PTR_WIDTH + ADDR_WIDTH)) async_fifo_bram       (.clka(~EM_CLK),.ena(1'b1),.wea(EM_WE), -      .addra({gpmc_ptr[PTR_WIDTH-1:0], EM_A}),.dia(data_i),.doa(), -      .clkb(~clk),.enb(1'b1),.web(1'b0), +      .addra({gpmc_ptr[PTR_WIDTH-1:0], addr}),.dia(data_i),.doa(), +      .clkb(clk),.enb(enable),.web(1'b0),        .addrb({fifo_ptr[PTR_WIDTH-1:0], counter}),.dib(18'h3ffff),.dob(data_o));  endmodule // gpmc_to_fifo diff --git a/fpga/usrp2/gpmc/gpmc_wb.v b/fpga/usrp2/gpmc/gpmc_wb.v deleted file mode 100644 index 4d368ca94..000000000 --- a/fpga/usrp2/gpmc/gpmc_wb.v +++ /dev/null @@ -1,79 +0,0 @@ -// -// Copyright 2011 Ettus Research LLC -// -// This program 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 of the License, or -// (at your option) any later version. -// -// This program 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 this program.  If not, see <http://www.gnu.org/licenses/>. -// - - - -module gpmc_wb -  (input EM_CLK, input [15:0] EM_D_in, output [15:0] EM_D_out, input [10:1] EM_A, input [1:0] EM_NBE, -   input EM_WE, input EM_OE, - -   input wb_clk, input wb_rst, -   output reg [10:0] wb_adr_o, output reg [15:0] wb_dat_mosi, input [15:0] wb_dat_miso, -   output reg [1:0] wb_sel_o, output wb_cyc_o, output reg wb_stb_o, output reg wb_we_o, input wb_ack_i); -    -   // //////////////////////////////////////////// -   // Control Path, Wishbone bus bridge (wb master) -   reg [1:0] we_del, oe_del; - -   // Synchronize the async control signals -   always @(posedge wb_clk) -     if (wb_rst) begin -        we_del <= 2'b0; -        oe_del <= 2'b0; -     end -     else begin -        we_del <= { we_del[0], EM_WE }; -        oe_del <= { oe_del[0], EM_OE }; -     end - -    wire writing = we_del == 2'b01; -    wire reading = oe_del == 2'b01; - -   always @(posedge wb_clk) -     if(writing || reading) -       wb_adr_o <= { EM_A, 1'b0 }; - -   always @(posedge wb_clk) -     if(writing) -       begin -          wb_dat_mosi <= EM_D_in; -          wb_sel_o <= ~EM_NBE; -       end - -   reg [15:0] EM_D_hold; -    -   always @(posedge wb_clk) -     if(wb_ack_i) -       EM_D_hold <= wb_dat_miso; - -   assign EM_D_out = wb_ack_i ? wb_dat_miso : EM_D_hold; -    -   assign wb_cyc_o = wb_stb_o; - -   always @(posedge wb_clk) -     if(writing) -       wb_we_o <= 1; -     else if(wb_ack_i)  // Turn off we when done.  Could also use we_del[0], others... -       wb_we_o <= 0; - -   always @(posedge wb_clk) -     if(writing || reading) -       wb_stb_o <= 1; -     else if(wb_ack_i) -       wb_stb_o <= 0; -    -endmodule // gpmc_wb diff --git a/fpga/usrp2/top/E1x0/u1e.ucf b/fpga/usrp2/top/E1x0/E1x0.ucf index 278fc289a..278fc289a 100644 --- a/fpga/usrp2/top/E1x0/u1e.ucf +++ b/fpga/usrp2/top/E1x0/E1x0.ucf diff --git a/fpga/usrp2/top/E1x0/u1e.v b/fpga/usrp2/top/E1x0/E1x0.v index 903ef7a6f..e7b0a4e00 100644 --- a/fpga/usrp2/top/E1x0/u1e.v +++ b/fpga/usrp2/top/E1x0/E1x0.v @@ -1,5 +1,5 @@  // -// Copyright 2011 Ettus Research LLC +// Copyright 2011-2012 Ettus Research LLC  //  // This program is free software: you can redistribute it and/or modify  // it under the terms of the GNU General Public License as published by @@ -18,7 +18,7 @@  `timescale 1ns / 1ps  ////////////////////////////////////////////////////////////////////////////////// -module u1e +module E1x0    (input CLK_FPGA_P, input CLK_FPGA_N,  // Diff     output [3:0] debug_led, output [31:0] debug, output [1:0] debug_clk,     input debug_pb, output FPGA_TXD, input FPGA_RXD, @@ -52,13 +52,23 @@ module u1e     input PPS_IN     ); +    assign FPGA_TXD = 0; //dont care +     // /////////////////////////////////////////////////////////////////////////     // Clocking -   wire  clk_fpga; +   wire clk_fpga; +   wire reset; + +   reg async_reset; +   always @(negedge EM_CLK) begin +        async_reset <= ~EM_NCS6 && ~EM_NWE && (EM_A[9:2] == 8'hff) && EM_D[0]; +   end     IBUFGDS #(.IOSTANDARD("LVDS_33"), .DIFF_TERM("TRUE"))      clk_fpga_pin (.O(clk_fpga),.I(CLK_FPGA_P),.IB(CLK_FPGA_N)); +   reset_sync reset_sync(.clk(clk_fpga), .reset_in(async_reset), .reset_out(reset)); +     // /////////////////////////////////////////////////////////////////////////     // UART level conversion     assign fpga_txd1 = overo_txd1; @@ -73,12 +83,12 @@ module u1e     assign miso = (~db_sen_tx & db_miso_tx) | (~db_sen_rx & db_miso_rx) |                   (~sen_codec & miso_codec) | (~cgen_sen_b & cgen_miso); -   //assign the aux spi to the cgen (bypasses wishbone) +   //assign the aux spi to the cgen (bypasses control fifo)     assign cgen_sclk = overo_gpio65;     assign cgen_sen_b = overo_gpio128;     assign cgen_mosi = overo_gpio145; -   wire proc_int; //re-purpose gpio for interrupt when we are not using aux spi -   assign overo_gpio147 = (cgen_sen_b == 1'b0)? cgen_miso : proc_int; +   wire has_resp; //re-purpose gpio for interrupt when we are not using aux spi +   assign overo_gpio147 = (cgen_sen_b == 1'b0)? cgen_miso : has_resp;     wire _cgen_sen_b;     //assign cgen_sen_b = _cgen_sen_b; //replaced by aux spi @@ -121,29 +131,66 @@ module u1e  		.D1(1'b1),   // 1-bit data input (associated with C1)  		.R(1'b0),       // 1-bit reset input  		.S(1'b0));      // 1-bit set input -    +     // ///////////////////////////////////////////////////////////////////////// -   // Main U1E Core -   u1e_core u1e_core(.clk_fpga(clk_fpga), .rst_fpga(~debug_pb), -		     .debug_led(debug_led), .debug(debug), .debug_clk(debug_clk), -		     .debug_txd(FPGA_TXD), .debug_rxd(FPGA_RXD), -		     .EM_CLK(EM_CLK), .EM_D(EM_D), .EM_A(EM_A), .EM_NBE(EM_NBE), -		     .EM_WAIT0(EM_WAIT0), .EM_NCS4(EM_NCS4), .EM_NCS5(EM_NCS5),  -		     .EM_NCS6(EM_NCS6), .EM_NWE(EM_NWE), .EM_NOE(EM_NOE), -		     .db_sda(db_sda), .db_scl(db_scl), -		     .sclk(sclk), .sen({_cgen_sen_b,sen_codec,db_sen_tx,db_sen_rx}), .mosi(mosi), .miso(miso), -		     .cgen_st_status(cgen_st_status), .cgen_st_ld(cgen_st_ld),.cgen_st_refmon(cgen_st_refmon),  -		     .cgen_sync_b(cgen_sync_b), .cgen_ref_sel(cgen_ref_sel), -		     .tx_have_space(overo_gpio144), -		     .rx_have_data(overo_gpio146), -		     .io_tx(io_tx), .io_rx(io_rx), -		     .tx_i(tx_i), .tx_q(tx_q),  -		     .rx_i(DA), .rx_q(DB), -		     .pps_in(PPS_IN), .proc_int(proc_int) ); +   // Main Core +   wire [35:0] rx_data, tx_data, ctrl_data, resp_data; +   wire rx_src_rdy, rx_dst_rdy, tx_src_rdy, tx_dst_rdy, resp_src_rdy, resp_dst_rdy, ctrl_src_rdy, ctrl_dst_rdy; +   wire dsp_rx_run, dsp_tx_run; +   wire [7:0] sen8; +   assign {_cgen_sen_b,sen_codec,db_sen_tx,db_sen_rx} = sen8[3:0]; +   wire [31:0] core_debug; + +   assign debug_led = ~{PPS_IN, dsp_tx_run, dsp_rx_run, cgen_st_ld}; +   wire cgen_sync; +   assign { cgen_sync_b, cgen_ref_sel } = {~cgen_sync, 1'b1}; + +   u1plus_core #( +        .NUM_RX_DSPS(2), +        .DSP_RX_XTRA_FIFOSIZE(10), +        .DSP_TX_XTRA_FIFOSIZE(10), +        .USE_PACKET_PADDER(0) +    ) core( +         .clk(clk_fpga), .reset(reset), +         .debug(core_debug), .debug_clk(debug_clk), + +         .rx_data(rx_data), .rx_src_rdy(rx_src_rdy), .rx_dst_rdy(rx_dst_rdy), +         .tx_data(tx_data), .tx_src_rdy(tx_src_rdy), .tx_dst_rdy(tx_dst_rdy), +         .ctrl_data(ctrl_data), .ctrl_src_rdy(ctrl_src_rdy), .ctrl_dst_rdy(ctrl_dst_rdy), +         .resp_data(resp_data), .resp_src_rdy(resp_src_rdy), .resp_dst_rdy(resp_dst_rdy), + +         .dsp_rx_run(dsp_rx_run), .dsp_tx_run(dsp_tx_run), +         .clock_sync(cgen_sync), + +         .db_sda(db_sda), .db_scl(db_scl), +         .sclk(sclk), .sen(sen8), .mosi(mosi), .miso(miso), +         .io_tx(io_tx), .io_rx(io_rx), +         .tx_i(tx_i), .tx_q(tx_q), +         .rx_i(DA), .rx_q(DB), +         .pps_in(PPS_IN) );     // ///////////////////////////////////////////////////////////////////////// -   // Local Debug -   // assign debug_clk = {clk_fpga, clk_2x }; -   // assign debug = { TXSYNC, TXBLANK, TX }; -    -endmodule // u1e +   // Interface between GPMC/host +    wire [31:0] gpmc_debug; + +   gpmc #(.TXFIFOSIZE(13), .RXFIFOSIZE(13)) +   gpmc (.arst(async_reset), +         .EM_CLK(EM_CLK), .EM_D(EM_D), .EM_A(EM_A), .EM_NBE(EM_NBE), +         .EM_WAIT0(EM_WAIT0), .EM_NCS4(EM_NCS4), .EM_NCS6(EM_NCS6), .EM_NWE(EM_NWE), +         .EM_NOE(EM_NOE), + +         .rx_have_data(overo_gpio146), .tx_have_space(overo_gpio144), +         .resp_have_data(has_resp), + +         .fifo_clk(clk_fpga), .fifo_rst(reset), +         .rx_data(rx_data), .rx_src_rdy(rx_src_rdy), .rx_dst_rdy(rx_dst_rdy), +         .tx_data(tx_data), .tx_src_rdy(tx_src_rdy), .tx_dst_rdy(tx_dst_rdy), +         .ctrl_data(ctrl_data), .ctrl_src_rdy(ctrl_src_rdy), .ctrl_dst_rdy(ctrl_dst_rdy), +         .resp_data(resp_data), .resp_src_rdy(resp_src_rdy), .resp_dst_rdy(resp_dst_rdy), + +         .debug(gpmc_debug)); + +    //assign debug = gpmc_debug; +    assign debug = core_debug; + +endmodule // E1x0 diff --git a/fpga/usrp2/top/E1x0/Makefile.E100 b/fpga/usrp2/top/E1x0/Makefile.E100 index 3ba7e1031..92334d987 100644 --- a/fpga/usrp2/top/E1x0/Makefile.E100 +++ b/fpga/usrp2/top/E1x0/Makefile.E100 @@ -5,7 +5,7 @@  ##################################################  # Project Setup  ################################################## -TOP_MODULE = u1e +TOP_MODULE = E1x0  BUILD_DIR = $(abspath build$(ISE)-E100)  # set me in a custom makefile @@ -48,9 +48,9 @@ simulator "ISE Simulator (VHDL/Verilog)" \  # Sources  ##################################################  TOP_SRCS = \ -u1e_core.v \ -u1e.v \ -u1e.ucf \ +../B100/u1plus_core.v \ +E1x0.v \ +E1x0.ucf \  timing.ucf  SOURCES = $(abspath $(TOP_SRCS)) $(FIFO_SRCS) \ diff --git a/fpga/usrp2/top/E1x0/Makefile.E110 b/fpga/usrp2/top/E1x0/Makefile.E110 index 89e51b523..e5be8d2fa 100644 --- a/fpga/usrp2/top/E1x0/Makefile.E110 +++ b/fpga/usrp2/top/E1x0/Makefile.E110 @@ -5,7 +5,7 @@  ##################################################  # Project Setup  ################################################## -TOP_MODULE = u1e +TOP_MODULE = E1x0  BUILD_DIR = $(abspath build$(ISE)-E110)  # set me in a custom makefile @@ -48,9 +48,9 @@ simulator "ISE Simulator (VHDL/Verilog)" \  # Sources  ##################################################  TOP_SRCS = \ -u1e_core.v \ -u1e.v \ -u1e.ucf \ +../B100/u1plus_core.v \ +E1x0.v \ +E1x0.ucf \  timing.ucf  SOURCES = $(abspath $(TOP_SRCS)) $(FIFO_SRCS) \ diff --git a/fpga/usrp2/top/E1x0/core_compile b/fpga/usrp2/top/E1x0/core_compile index 14e138fa3..dd88094ff 100755 --- a/fpga/usrp2/top/E1x0/core_compile +++ b/fpga/usrp2/top/E1x0/core_compile @@ -1,3 +1,3 @@ -iverilog -Wall -y. -y ../../control_lib/ -y ../../custom/ -y ../../fifo/ -y ../../gpmc/ -y ../../models/ -y ../../sdr_lib/ -y ../../coregen/ -y ../../vrt/ -y ../../opencores/i2c/rtl/verilog/ -y ../../opencores/spi/rtl/verilog/ -y ../../timing/ -y ../../opencores/8b10b/ -I ../../opencores/spi/rtl/verilog/ -I ../../opencores/i2c/rtl/verilog/ -y ../../simple_gemac -y $XILINX/verilog/src/unisims u1e_core.v  2>&1  | grep -v timescale | grep -v coregen | grep -v models +iverilog -Wall -y. -y ../../control_lib/ -y ../../custom/ -y ../../fifo/ -y ../../gpmc/ -y ../../models/ -y ../../sdr_lib/ -y ../../coregen/ -y ../../vrt/ -y ../../opencores/i2c/rtl/verilog/ -y ../../opencores/spi/rtl/verilog/ -y ../../timing/ -y ../../opencores/8b10b/ -I ../../opencores/spi/rtl/verilog/ -I ../../opencores/i2c/rtl/verilog/ -y ../B100 -y $XILINX/verilog/src/unisims E100.v  2>&1  | grep -v timescale | grep -v coregen | grep -v models diff --git a/fpga/usrp2/top/E1x0/timing.ucf b/fpga/usrp2/top/E1x0/timing.ucf index 47c250c2f..6bd559426 100644 --- a/fpga/usrp2/top/E1x0/timing.ucf +++ b/fpga/usrp2/top/E1x0/timing.ucf @@ -3,25 +3,21 @@ NET "CLK_FPGA_P" TNM_NET = "CLK_FPGA_P";  TIMESPEC "TS_clk_fpga_p" = PERIOD "CLK_FPGA_P" 15625 ps HIGH 50 %;  NET "EM_CLK" TNM_NET = "EM_CLK"; -TIMESPEC "TS_em_clk" = PERIOD "EM_CLK" 12048 ps HIGH 50 %; +TIMESPEC "TS_em_clk" = PERIOD "EM_CLK" 18867 ps HIGH 50 %;  #constrain GPMC IO -NET "EM_D<*>" MAXDELAY = 5.5 ns; -NET "EM_A<*>" MAXDELAY = 5.5 ns; -NET "EM_NBE<*>" MAXDELAY = 5.5 ns; -NET "EM_NCS4" MAXDELAY = 5.5 ns; -NET "EM_NCS6" MAXDELAY = 5.5 ns; -NET "EM_NWE" MAXDELAY = 5.5 ns; -NET "EM_NOE" MAXDELAY = 5.5 ns; +INST "EM_D<*>" TNM = gpmc_net_out; +INST "EM_D<*>" TNM = gpmc_net; +INST "EM_A<*>" TNM = gpmc_net; +INST "EM_NCS4" TNM = gpmc_net; +INST "EM_NCS6" TNM = gpmc_net; +INST "EM_NWE" TNM = gpmc_net; +INST "EM_NOE" TNM = gpmc_net; + +TIMEGRP "gpmc_net" OFFSET = IN 7 ns VALID 14 ns BEFORE "EM_CLK" FALLING; +TIMEGRP "gpmc_net_out" OFFSET = OUT 14 ns AFTER "EM_CLK" RISING; //2 clock cyc per read  #constrain interrupt lines  NET "overo_gpio144" MAXDELAY = 5.5 ns; #have space  NET "overo_gpio146" MAXDELAY = 5.5 ns; #have data  NET "overo_gpio147" MAXDELAY = 5.5 ns; #have msg/aux spi miso - -#NET "adc_a<*>" TNM_NET = ADC_DATA_GRP; -#NET "adc_b<*>" TNM_NET = ADC_DATA_GRP; -#TIMEGRP "ADC_DATA_GRP" OFFSET = IN 1 ns VALID 5 ns BEFORE "clk_fpga_p" RISING; - -#NET "adc_a<*>" OFFSET = IN 1 ns VALID 5 ns BEFORE "clk_fpga_p" RISING; -#NET "adc_b<*>" OFFSET = IN 1 ns VALID 5 ns BEFORE "clk_fpga_p" RISING; diff --git a/fpga/usrp2/top/E1x0/u1e_core.v b/fpga/usrp2/top/E1x0/u1e_core.v deleted file mode 100644 index fef988e62..000000000 --- a/fpga/usrp2/top/E1x0/u1e_core.v +++ /dev/null @@ -1,494 +0,0 @@ -// -// Copyright 2011-2012 Ettus Research LLC -// -// This program 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 of the License, or -// (at your option) any later version. -// -// This program 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 this program.  If not, see <http://www.gnu.org/licenses/>. -// - - - -module u1e_core -  (input clk_fpga, input rst_fpga, -   output [3:0] debug_led, output [31:0] debug, output [1:0] debug_clk, -   output debug_txd, input debug_rxd, -    -   // GPMC -   input EM_CLK, inout [15:0] EM_D, input [10:1] EM_A, input [1:0] EM_NBE, -   input EM_WAIT0, input EM_NCS4, input EM_NCS5, input EM_NCS6, -   input EM_NWE, input EM_NOE, -    -   inout db_sda, inout db_scl, -   output sclk, output [15:0] sen, output mosi, input miso, - -   input cgen_st_status, input cgen_st_ld, input cgen_st_refmon, output cgen_sync_b, output cgen_ref_sel,    -   output tx_have_space, output rx_have_data, -   inout [15:0] io_tx, inout [15:0] io_rx,  -   output [13:0] tx_i, output [13:0] tx_q,  -   input [11:0] rx_i, input [11:0] rx_q,  -    -   input pps_in, output reg proc_int -   ); - -   localparam TXFIFOSIZE = 13; -   localparam RXFIFOSIZE = 13; - -   // 64 total regs in address space -   localparam SR_RX_CTRL0 = 0;       // 9 regs (+0 to +8) -   localparam SR_RX_DSP0 = 10;       // 4 regs (+0 to +3) -   localparam SR_RX_CTRL1 = 16;      // 9 regs (+0 to +8) -   localparam SR_RX_DSP1 = 26;       // 4 regs (+0 to +3) -   localparam SR_ERR_CTRL = 30;      // 1 reg -   localparam SR_TX_CTRL = 32;       // 4 regs (+0 to +3) -   localparam SR_TX_DSP = 38;        // 3 regs (+0 to +2) - -   localparam SR_TIME64 = 42;        // 6 regs (+0 to +5) -   localparam SR_RX_FRONT = 48;      // 5 regs (+0 to +4) -   localparam SR_TX_FRONT = 54;      // 5 regs (+0 to +4) - -   localparam SR_REG_TEST32 = 60;    // 1 reg -   localparam SR_CLEAR_FIFO = 61;    // 1 reg -   localparam SR_GLOBAL_RESET = 63;  // 1 reg -   localparam SR_USER_REGS = 64;     // 2 regs - -   localparam SR_GPIO = 128;         // 5 regs -    -   wire 	wb_clk = clk_fpga; -   wire 	wb_rst, global_reset; - -   wire 	pps_int; -   wire [63:0] 	vita_time, vita_time_pps; -   reg [15:0] 	reg_cgen_ctrl, reg_test, xfer_rate; -   wire [7:0] 	test_rate; -   wire [3:0] 	test_ctrl; - -   wire [7:0]  set_addr, set_addr_user; -   wire [31:0] set_data, set_data_user; -   wire        set_stb, set_stb_user; - -   wire [31:0] 	debug_vt; -   wire 	rx_overrun_dsp0, rx_overrun_dsp1, rx_overrun_gpmc, tx_underrun_dsp, tx_underrun_gpmc; -   wire 	rx_overrun = rx_overrun_gpmc | rx_overrun_dsp0 | rx_overrun_dsp1; -   wire 	tx_underrun = tx_underrun_gpmc | tx_underrun_dsp; -    -   setting_reg #(.my_addr(SR_GLOBAL_RESET), .width(1)) sr_reset -     (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), -      .in(set_data),.out(),.changed(global_reset)); - -   reset_sync reset_sync(.clk(wb_clk), .reset_in(rst_fpga | global_reset), .reset_out(wb_rst)); -    -   // ///////////////////////////////////////////////////////////////////////////////////// -   // GPMC Slave to Wishbone Master -   localparam dw = 16; -   localparam aw = 11; -   localparam sw = 2; -    -   wire [dw-1:0] m0_dat_mosi, m0_dat_miso; -   wire [aw-1:0] m0_adr; -   wire [sw-1:0] m0_sel; -   wire 	 m0_cyc, m0_stb, m0_we, m0_ack, m0_err, m0_rty; - -   wire [31:0] 	 debug_gpmc; - -   wire [35:0] 	 tx_data, rx_data, tx_err_data; -   wire 	 tx_src_rdy, tx_dst_rdy, rx_src_rdy, rx_dst_rdy,  -		 tx_err_src_rdy, tx_err_dst_rdy; - -   wire 	 clear_fifo; - -   setting_reg #(.my_addr(SR_CLEAR_FIFO), .width(1)) sr_clear_fifo -     (.clk(wb_clk),.rst(wb_rst),.strobe(set_stb),.addr(set_addr), -      .in(set_data),.out(),.changed(clear_fifo)); - -   wire 	 run_rx0, run_rx1; - -   gpmc #(.TXFIFOSIZE(TXFIFOSIZE), .RXFIFOSIZE(RXFIFOSIZE)) -   gpmc (.arst(wb_rst), -	 .EM_CLK(EM_CLK), .EM_D(EM_D), .EM_A(EM_A), .EM_NBE(EM_NBE), -	 .EM_WAIT0(EM_WAIT0), .EM_NCS4(EM_NCS4), .EM_NCS6(EM_NCS6), .EM_NWE(EM_NWE),  -	 .EM_NOE(EM_NOE), -	  -	 .rx_have_data(rx_have_data), .tx_have_space(tx_have_space), -	  -	 .wb_clk(wb_clk), .wb_rst(wb_rst), -	 .wb_adr_o(m0_adr), .wb_dat_mosi(m0_dat_mosi), .wb_dat_miso(m0_dat_miso), -	 .wb_sel_o(m0_sel), .wb_cyc_o(m0_cyc), .wb_stb_o(m0_stb), .wb_we_o(m0_we), -	 .wb_ack_i(m0_ack), -	  -	 .fifo_clk(wb_clk), .fifo_rst(wb_rst), .clear_tx(clear_fifo), .clear_rx(clear_fifo), -	 .tx_data_o(tx_data), .tx_src_rdy_o(tx_src_rdy), .tx_dst_rdy_i(tx_dst_rdy), -	 .rx_data_i(rx_data), .rx_src_rdy_i(rx_src_rdy), .rx_dst_rdy_o(rx_dst_rdy), - -	 .tx_underrun(tx_underrun_gpmc), .rx_overrun(rx_overrun_gpmc), - -	 .test_rate(test_rate), .test_ctrl(test_ctrl), -	 .debug(debug_gpmc)); - -   wire 	 rx_src_rdy_int, rx_dst_rdy_int, tx_src_rdy_int, tx_dst_rdy_int; -    -   wire [31:0] 	 debug_rx_dsp, vrc_debug, vrf_debug, vr_debug; -    -   // ///////////////////////////////////////////////////////////////////////// -   // RX ADC Frontend, does IQ Balance, DC Offset, muxing - -   wire [23:0] 	 rx_fe_i, rx_fe_q;  // 24 bits is total overkill here, but it matches u2/u2p - -   rx_frontend #(.BASE(SR_RX_FRONT)) rx_frontend -     (.clk(wb_clk),.rst(wb_rst), -      .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), -      .adc_a({rx_i,4'b00}),.adc_ovf_a(0), -      .adc_b({rx_q,4'b00}),.adc_ovf_b(0), -      .i_out(rx_fe_i), .q_out(rx_fe_q), .run(run_rx0 | run_rx1), .debug()); -    -   // ///////////////////////////////////////////////////////////////////////// -   // DSP RX 0 - -   wire [31:0] 	 sample_rx0; -   wire 	 strobe_rx0, clear_rx0; -   wire [35:0] 	 vita_rx_data0; -   wire 	 vita_rx_src_rdy0, vita_rx_dst_rdy0; -    -   ddc_chain #(.BASE(SR_RX_DSP0), .DSPNO(0)) ddc_chain0 -     (.clk(wb_clk), .rst(wb_rst), .clr(clear_rx0), -      .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), -      .set_stb_user(set_stb_user), .set_addr_user(set_addr_user), .set_data_user(set_data_user), -      .rx_fe_i(rx_fe_i),.rx_fe_q(rx_fe_q), -      .sample(sample_rx0), .run(run_rx0), .strobe(strobe_rx0), -      .debug() ); - -   vita_rx_chain #(.BASE(SR_RX_CTRL0), .UNIT(0), .FIFOSIZE(10), .PROT_ENG_FLAGS(0), .DSP_NUMBER(0)) vita_rx_chain0 -     (.clk(wb_clk),.reset(wb_rst), -      .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), -      .set_stb_user(set_stb_user), .set_addr_user(set_addr_user), .set_data_user(set_data_user), -      .vita_time(vita_time), .overrun(rx_overrun_dsp0), -      .sample(sample_rx0), .run(run_rx0), .strobe(strobe_rx0), .clear_o(clear_rx0), -      .rx_data_o(vita_rx_data0), .rx_dst_rdy_i(vita_rx_dst_rdy0), .rx_src_rdy_o(vita_rx_src_rdy0), -      .debug() ); -    -   // ///////////////////////////////////////////////////////////////////////// -   // DSP RX 1 - -   wire [31:0] 	 sample_rx1; -   wire 	 strobe_rx1, clear_rx1; -   wire [35:0] 	 vita_rx_data1; -   wire 	 vita_rx_src_rdy1, vita_rx_dst_rdy1; -    -   ddc_chain #(.BASE(SR_RX_DSP1), .DSPNO(1)) ddc_chain1 -     (.clk(wb_clk),.rst(wb_rst), .clr(clear_rx1), -      .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), -      .set_stb_user(set_stb_user), .set_addr_user(set_addr_user), .set_data_user(set_data_user), -      .rx_fe_i(rx_fe_i),.rx_fe_q(rx_fe_q), -      .sample(sample_rx1), .run(run_rx1), .strobe(strobe_rx1), -      .debug() ); - -   vita_rx_chain #(.BASE(SR_RX_CTRL1), .UNIT(1), .FIFOSIZE(10), .PROT_ENG_FLAGS(0), .DSP_NUMBER(1)) vita_rx_chain1 -     (.clk(wb_clk),.reset(wb_rst), -      .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), -      .set_stb_user(set_stb_user), .set_addr_user(set_addr_user), .set_data_user(set_data_user), -      .vita_time(vita_time), .overrun(rx_overrun_dsp1), -      .sample(sample_rx1), .run(run_rx1), .strobe(strobe_rx1), .clear_o(clear_rx1), -      .rx_data_o(vita_rx_data1), .rx_dst_rdy_i(vita_rx_dst_rdy1), .rx_src_rdy_o(vita_rx_src_rdy1), -      .debug() ); - -   // ///////////////////////////////////////////////////////////////////////// -   // RX Stream muxing - -   fifo36_mux #(.prio(0)) mux_data_streams -     (.clk(wb_clk), .reset(wb_rst), .clear(clear_fifo), -      .data0_i(vita_rx_data0), .src0_rdy_i(vita_rx_src_rdy0), .dst0_rdy_o(vita_rx_dst_rdy0), -      .data1_i(vita_rx_data1), .src1_rdy_i(vita_rx_src_rdy1), .dst1_rdy_o(vita_rx_dst_rdy1), -      .data_o(rx_data), .src_rdy_o(rx_src_rdy), .dst_rdy_i(rx_dst_rdy)); - -   // /////////////////////////////////////////////////////////////////////////////////// -   // DSP TX - -   wire 	 run_tx; -   wire [23:0] 	 tx_fe_i, tx_fe_q; -   wire [31:0]   sample_tx; -   wire strobe_tx, clear_tx; - -   vita_tx_chain #(.BASE(SR_TX_CTRL), .FIFOSIZE(10), .POST_ENGINE_FIFOSIZE(11), -		   .REPORT_ERROR(1), .DO_FLOW_CONTROL(0), -		   .PROT_ENG_FLAGS(0), .USE_TRANS_HEADER(0), -		   .DSP_NUMBER(0))  -   vita_tx_chain -     (.clk(wb_clk), .reset(wb_rst), -      .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), -      .set_stb_user(set_stb_user), .set_addr_user(set_addr_user), .set_data_user(set_data_user), -      .vita_time(vita_time), -      .tx_data_i(tx_data), .tx_src_rdy_i(tx_src_rdy), .tx_dst_rdy_o(tx_dst_rdy), -      .err_data_o(tx_err_data), .err_src_rdy_o(tx_err_src_rdy), .err_dst_rdy_i(tx_err_dst_rdy), -      .sample(sample_tx), .strobe(strobe_tx), -      .underrun(tx_underrun_dsp), .run(run_tx), .clear_o(clear_tx), -      .debug(debug_vt)); - -   duc_chain #(.BASE(SR_TX_DSP), .DSPNO(0)) duc_chain -     (.clk(wb_clk), .rst(wb_rst), .clr(clear_tx), -      .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), -      .set_stb_user(set_stb_user), .set_addr_user(set_addr_user), .set_data_user(set_data_user), -      .tx_fe_i(tx_fe_i),.tx_fe_q(tx_fe_q), -      .sample(sample_tx), .run(run_tx), .strobe(strobe_tx), -      .debug() ); - -   tx_frontend #(.BASE(SR_TX_FRONT), .WIDTH_OUT(14)) tx_frontend -     (.clk(wb_clk), .rst(wb_rst), -      .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), -      .tx_i(tx_fe_i), .tx_q(tx_fe_q), .run(1'b1), -      .dac_a(tx_i), .dac_b(tx_q)); - -   // ///////////////////////////////////////////////////////////////////////////////////// -   // Wishbone Intercon, single master -   wire [dw-1:0] s0_dat_mosi, s1_dat_mosi, s0_dat_miso, s1_dat_miso, s2_dat_mosi, s3_dat_mosi, s2_dat_miso, s3_dat_miso, -		 s4_dat_mosi, s5_dat_mosi, s4_dat_miso, s5_dat_miso, s6_dat_mosi, s7_dat_mosi, s6_dat_miso, s7_dat_miso, -		 s8_dat_mosi, s9_dat_mosi, s8_dat_miso, s9_dat_miso, sa_dat_mosi, sb_dat_mosi, sa_dat_miso, sb_dat_miso, -		 sc_dat_mosi, sd_dat_mosi, sc_dat_miso, sd_dat_miso, se_dat_mosi, sf_dat_mosi, se_dat_miso, sf_dat_miso; -   wire [aw-1:0] s0_adr,s1_adr,s2_adr,s3_adr,s4_adr,s5_adr,s6_adr,s7_adr; -   wire [aw-1:0] s8_adr,s9_adr,sa_adr,sb_adr,sc_adr, sd_adr, se_adr, sf_adr; -   wire [sw-1:0] s0_sel,s1_sel,s2_sel,s3_sel,s4_sel,s5_sel,s6_sel,s7_sel; -   wire [sw-1:0] s8_sel,s9_sel,sa_sel,sb_sel,sc_sel, sd_sel, se_sel, sf_sel; -   wire 	 s0_ack,s1_ack,s2_ack,s3_ack,s4_ack,s5_ack,s6_ack,s7_ack; -   wire 	 s8_ack,s9_ack,sa_ack,sb_ack,sc_ack, sd_ack, se_ack, sf_ack; -   wire 	 s0_stb,s1_stb,s2_stb,s3_stb,s4_stb,s5_stb,s6_stb,s7_stb; -   wire 	 s8_stb,s9_stb,sa_stb,sb_stb,sc_stb, sd_stb, se_stb, sf_stb; -   wire 	 s0_cyc,s1_cyc,s2_cyc,s3_cyc,s4_cyc,s5_cyc,s6_cyc,s7_cyc; -   wire 	 s8_cyc,s9_cyc,sa_cyc,sb_cyc,sc_cyc, sd_cyc, se_cyc, sf_cyc; -   wire 	 s0_we,s1_we,s2_we,s3_we,s4_we,s5_we,s6_we,s7_we; -   wire 	 s8_we,s9_we,sa_we,sb_we,sc_we,sd_we, se_we, sf_we; -    -   wb_1master #(.dw(dw), .aw(aw), .sw(sw), .decode_w(4), -		.s0_addr(4'h0), .s0_mask(4'hF), // Misc Regs -		.s1_addr(4'h1), .s1_mask(4'hF), // Unused -		.s2_addr(4'h2), .s2_mask(4'hF),	// SPI -		.s3_addr(4'h3), .s3_mask(4'hF), // I2C -		.s4_addr(4'h4), .s4_mask(4'hF),	// Unused -		.s5_addr(4'h5), .s5_mask(4'hF), // Unused on B1x0, Async Msg on E1x0 -		.s6_addr(4'h6), .s6_mask(4'hF),	// Unused -		.s7_addr(4'h7), .s7_mask(4'hF), // Readback MUX -		.s8_addr(4'h8), .s8_mask(4'h8), // Setting Regs -- slave 8 is 8 slaves wide -		// slaves 9-f alias to slave 1, all are unused -		.s9_addr(4'h1), .s9_mask(4'hF), -		.sa_addr(4'h1), .sa_mask(4'hF),	.sb_addr(4'h1), .sb_mask(4'hF), -		.sc_addr(4'h1), .sc_mask(4'hF),	.sd_addr(4'h1), .sd_mask(4'hF), -		.se_addr(4'h1), .se_mask(4'hF),	.sf_addr(4'h1), .sf_mask(4'hF)) -   wb_1master -     (.clk_i(wb_clk),.rst_i(wb_rst),        -      .m0_dat_o(m0_dat_miso),.m0_ack_o(m0_ack),.m0_err_o(m0_err),.m0_rty_o(m0_rty),.m0_dat_i(m0_dat_mosi), -      .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_mosi),.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_miso),.s0_ack_i(s0_ack),.s0_err_i(0),.s0_rty_i(0), -      .s1_dat_o(s1_dat_mosi),.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_miso),.s1_ack_i(s1_ack),.s1_err_i(0),.s1_rty_i(0), -      .s2_dat_o(s2_dat_mosi),.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_miso),.s2_ack_i(s2_ack),.s2_err_i(0),.s2_rty_i(0), -      .s3_dat_o(s3_dat_mosi),.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_miso),.s3_ack_i(s3_ack),.s3_err_i(0),.s3_rty_i(0), -      .s4_dat_o(s4_dat_mosi),.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_miso),.s4_ack_i(s4_ack),.s4_err_i(0),.s4_rty_i(0), -      .s5_dat_o(s5_dat_mosi),.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_miso),.s5_ack_i(s5_ack),.s5_err_i(0),.s5_rty_i(0), -      .s6_dat_o(s6_dat_mosi),.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_miso),.s6_ack_i(s6_ack),.s6_err_i(0),.s6_rty_i(0), -      .s7_dat_o(s7_dat_mosi),.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_miso),.s7_ack_i(s7_ack),.s7_err_i(0),.s7_rty_i(0), -      .s8_dat_o(s8_dat_mosi),.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_miso),.s8_ack_i(s8_ack),.s8_err_i(0),.s8_rty_i(0), -      .s9_dat_o(s9_dat_mosi),.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_miso),.s9_ack_i(s9_ack),.s9_err_i(0),.s9_rty_i(0), -      .sa_dat_o(sa_dat_mosi),.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_miso),.sa_ack_i(sa_ack),.sa_err_i(0),.sa_rty_i(0), -      .sb_dat_o(sb_dat_mosi),.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_miso),.sb_ack_i(sb_ack),.sb_err_i(0),.sb_rty_i(0), -      .sc_dat_o(sc_dat_mosi),.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_miso),.sc_ack_i(sc_ack),.sc_err_i(0),.sc_rty_i(0), -      .sd_dat_o(sd_dat_mosi),.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_miso),.sd_ack_i(sd_ack),.sd_err_i(0),.sd_rty_i(0), -      .se_dat_o(se_dat_mosi),.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_miso),.se_ack_i(se_ack),.se_err_i(0),.se_rty_i(0), -      .sf_dat_o(sf_dat_mosi),.sf_adr_o(sf_adr),.sf_sel_o(sf_sel),.sf_we_o(sf_we),.sf_cyc_o(sf_cyc),.sf_stb_o(sf_stb), -      .sf_dat_i(sf_dat_miso),.sf_ack_i(sf_ack),.sf_err_i(0),.sf_rty_i(0) ); - -   assign s1_ack = 0;   assign s4_ack = 0;   assign s6_ack = 0; -   assign s9_ack = 0;   assign sa_ack = 0;   assign sb_ack = 0; -   assign sc_ack = 0;   assign sd_ack = 0;   assign se_ack = 0;   assign sf_ack = 0; - -   // ///////////////////////////////////////////////////////////////////////////////////// -   // Slave 0, Misc LEDs, Switches, controls -    -   localparam REG_CGEN_CTRL = 7'd4;    // out -   localparam REG_CGEN_ST = 7'd6;      // in -   localparam REG_TEST = 7'd8;         // out -   localparam REG_XFER_RATE = 7'd14;   // out -    -   always @(posedge wb_clk) -     if(wb_rst) -       begin -	  reg_cgen_ctrl <= 2'b11; -	  reg_test <= 0; -	  xfer_rate <= 0; -       end -     else -       if(s0_cyc & s0_stb & s0_we)  -	 case(s0_adr[6:0]) -	   REG_CGEN_CTRL : -	     reg_cgen_ctrl <= s0_dat_mosi; -	   REG_TEST : -	     reg_test <= s0_dat_mosi; -	   REG_XFER_RATE : -	     xfer_rate <= s0_dat_mosi; -	 endcase // case (s0_adr[6:0]) - -   assign test_ctrl = xfer_rate[11:8]; -   assign test_rate = xfer_rate[7:0]; -    -   assign { debug_led[3:0] } = ~{1'b1, run_tx, run_rx0 | run_rx1, cgen_st_ld}; -   assign { cgen_sync_b, cgen_ref_sel } = reg_cgen_ctrl; -    -   assign s0_dat_miso = (s0_adr[6:0] == REG_CGEN_CTRL) ? reg_cgen_ctrl : -			(s0_adr[6:0] == REG_CGEN_ST) ? {13'b0,cgen_st_status,cgen_st_ld,cgen_st_refmon} : -			(s0_adr[6:0] == REG_TEST) ? reg_test : -			16'hBEEF; -    -   assign s0_ack = s0_stb & s0_cyc; - -   // ///////////////////////////////////////////////////////////////////////////////////// -   // Slave 2, SPI - -   spi_top16 shared_spi -     (.wb_clk_i(wb_clk),.wb_rst_i(wb_rst),.wb_adr_i(s2_adr[4:0]),.wb_dat_i(s2_dat_mosi), -      .wb_dat_o(s2_dat_miso),.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(), -      .ss_pad_o(sen), .sclk_pad_o(sclk), .mosi_pad_o(mosi), .miso_pad_i(miso) ); -    -   // ///////////////////////////////////////////////////////////////////////// -   // Slave 3, I2C - -   wire 	scl_pad_i, scl_pad_o, scl_pad_oen_o, sda_pad_i, sda_pad_o, sda_pad_oen_o; -   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[3:1]),.wb_dat_i(s3_dat_mosi[7:0]),.wb_dat_o(s3_dat_miso[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(), -      .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_miso[15:8] = 8'd0; - -   // I2C -- Don't use external transistors for open drain, the FPGA implements this -   IOBUF scl_pin(.O(scl_pad_i), .IO(db_scl), .I(scl_pad_o), .T(scl_pad_oen_o)); -   IOBUF sda_pin(.O(sda_pad_i), .IO(db_sda), .I(sda_pad_o), .T(sda_pad_oen_o)); - -   // ///////////////////////////////////////////////////////////////////////// -   // GPIOs - -   wire [31:0] gpio_readback; -    -   gpio_atr #(.BASE(SR_GPIO), .WIDTH(32))  -   gpio_atr(.clk(wb_clk),.reset(wb_rst), -	    .set_stb(set_stb),.set_addr(set_addr),.set_data(set_data), -	    .rx(run_rx0 | run_rx1), .tx(run_tx), -	    .gpio({io_tx,io_rx}), .gpio_readback(gpio_readback) ); - -   //////////////////////////////////////////////////////////////////////////// -   // FIFO to WB slave for async messages - Slave #5 - -   //signals between fifo and buffer module -   wire [35:0] _tx_err_data; -   wire _tx_err_src_rdy, _tx_err_dst_rdy; - -   fifo_cascade #(.WIDTH(36), .SIZE(9/*512 lines plenty for short pkts*/)) err_fifo( -        .clk(wb_clk), .reset(wb_rst), .clear(wb_rst), -        .datain(tx_err_data),   .src_rdy_i(tx_err_src_rdy),   .dst_rdy_o(tx_err_dst_rdy), -        .dataout(_tx_err_data), .src_rdy_o(_tx_err_src_rdy),  .dst_rdy_i(_tx_err_dst_rdy) -   ); - -   wire [31:0] err_status, err_data32; -   //the buffer is 32 bits, but the data is 16, so mux based on the addr bit -   assign s5_dat_miso = (s5_adr[1] == 1'b0)? err_data32[15:0] : err_data32[31:16]; - -   buffer_int2 #(.BASE(SR_ERR_CTRL), .BUF_SIZE(5)) fifo_to_wb( -        .clk(wb_clk), .rst(wb_rst), -        .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), -        .status(err_status), -        // Wishbone interface to RAM -        .wb_clk_i(wb_clk), .wb_rst_i(wb_rst), -        .wb_we_i(s5_we),   .wb_stb_i(s5_stb), -        .wb_adr_i({5'b0,s5_adr}), .wb_dat_i({16'b0, s5_dat_mosi}), -        .wb_dat_o(err_data32), .wb_ack_o(s5_ack), -        // Write FIFO Interface -        .wr_data_i(_tx_err_data), .wr_ready_i(_tx_err_src_rdy), .wr_ready_o(_tx_err_dst_rdy), -        // Read FIFO Interface -        .rd_data_o(), .rd_ready_o(), .rd_ready_i(1'b0) -    ); - -   //////////////////////////////////////////////////////////////////////////// -   // Interrupts - -   always @(posedge wb_clk) -     proc_int <= (|err_status[1:0]); - -   // ///////////////////////////////////////////////////////////////////////// -   // Settings Bus -- Slave #8 + 9 - -   // only have 64 regs, 32 bits each with current setup... -   settings_bus_16LE #(.AWIDTH(11),.RWIDTH(8)) settings_bus_16LE -     (.wb_clk(wb_clk),.wb_rst(wb_rst),.wb_adr_i(s8_adr),.wb_dat_i(s8_dat_mosi), -      .wb_stb_i(s8_stb),.wb_we_i(s8_we),.wb_ack_o(s8_ack), -      .strobe(set_stb),.addr(set_addr),.data(set_data) ); - -   user_settings #(.BASE(SR_USER_REGS)) user_settings -     (.clk(wb_clk),.rst(wb_rst),.set_stb(set_stb), -      .set_addr(set_addr),.set_data(set_data), -      .set_addr_user(set_addr_user),.set_data_user(set_data_user), -      .set_stb_user(set_stb_user) ); - -   // ///////////////////////////////////////////////////////////////////////// -   // Readback mux 32 -- Slave #7 - -   //compatibility number -> increment when the fpga has been sufficiently altered -   localparam compat_num = {16'd10, 16'd2}; //major, minor - -   wire [31:0] reg_test32; - -   //this setting reg is persistent across resets, to check for fpga loaded -   setting_reg #(.my_addr(SR_REG_TEST32)) sr_reg_test32 -     (.clk(wb_clk),.rst(/*wb_rst*/1'b0),.strobe(set_stb),.addr(set_addr), -      .in(set_data),.out(reg_test32),.changed()); - -   wb_readback_mux_16LE readback_mux_32 -     (.wb_clk_i(wb_clk), .wb_rst_i(wb_rst), .wb_stb_i(s7_stb), -      .wb_adr_i({5'b0,s7_adr}), .wb_dat_o(s7_dat_miso), .wb_ack_o(s7_ack), - -      .word00(vita_time[63:32]),        .word01(vita_time[31:0]), -      .word02(vita_time_pps[63:32]),    .word03(vita_time_pps[31:0]), -      .word04(reg_test32),              .word05(err_status), -      .word06(compat_num),              .word07(gpio_readback), -      .word08(32'b0),                   .word09(32'b0), -      .word10(32'b0),                   .word11(32'b0), -      .word12(32'b0),                   .word13(32'b0), -      .word14(32'b0),                   .word15(32'b0) -      ); - -   // ///////////////////////////////////////////////////////////////////////// -   // VITA Timing - -   time_64bit #(.BASE(SR_TIME64)) time_64bit -     (.clk(wb_clk), .rst(wb_rst), .set_stb(set_stb), .set_addr(set_addr), .set_data(set_data), -      .pps(pps_in), .vita_time(vita_time), .vita_time_pps(vita_time_pps), .pps_int(pps_int), -      .exp_time_in(0)); -    -   // ///////////////////////////////////////////////////////////////////////////////////// -   // Debug circuitry - -   assign debug_clk = 2'b00; //{ EM_CLK, clk_fpga }; -   assign debug = 0; -    -endmodule // u1e_core | 
