diff options
| author | Matt Ettus <matt@ettus.com> | 2011-06-15 17:33:42 -0700 | 
|---|---|---|
| committer | Matt Ettus <matt@ettus.com> | 2011-06-15 17:33:42 -0700 | 
| commit | b986e58f4d8b202f37728b249cbc0d94e5a27b09 (patch) | |
| tree | 5e29669524eba0007d22b9835ddf9ceb77e0e990 | |
| parent | 967637278132513f66be3cd505f77be88ee75691 (diff) | |
| download | uhd-b986e58f4d8b202f37728b249cbc0d94e5a27b09.tar.gz uhd-b986e58f4d8b202f37728b249cbc0d94e5a27b09.tar.bz2 uhd-b986e58f4d8b202f37728b249cbc0d94e5a27b09.zip  | |
u1e: experimental rewrite of read path of gpmc
| -rw-r--r-- | usrp2/gpmc/Makefile.srcs | 1 | ||||
| -rw-r--r-- | usrp2/gpmc/gpmc_async.v | 3 | ||||
| -rw-r--r-- | usrp2/gpmc/new_read.v | 64 | 
3 files changed, 66 insertions, 2 deletions
diff --git a/usrp2/gpmc/Makefile.srcs b/usrp2/gpmc/Makefile.srcs index 1eac25394..bf0c0ecfd 100644 --- a/usrp2/gpmc/Makefile.srcs +++ b/usrp2/gpmc/Makefile.srcs @@ -18,4 +18,5 @@ gpmc_to_fifo_sync.v \  gpmc_wb.v \  ram_to_fifo.v \  new_write.v \ +new_read.v \  )) diff --git a/usrp2/gpmc/gpmc_async.v b/usrp2/gpmc/gpmc_async.v index 4270abb5c..14bdd0fb0 100644 --- a/usrp2/gpmc/gpmc_async.v +++ b/usrp2/gpmc/gpmc_async.v @@ -117,12 +117,11 @@ module gpmc_async        .datain(rx18_data), .src_rdy_i(rx18_src_rdy), .dst_rdy_o(rx18_dst_rdy), .space(rx_fifo_space),        .dataout(rx18b_data), .src_rdy_o(rx18b_src_rdy), .dst_rdy_i(rx18b_dst_rdy), .occupied()); -   fifo_to_gpmc_async fifo_to_gpmc_async +   new_read new_read       (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx),        .data_i(rx18b_data), .src_rdy_i(rx18b_src_rdy), .dst_rdy_o(rx18b_dst_rdy),        .EM_D(EM_D_fifo), .EM_NCS(EM_NCS4), .EM_NOE(EM_NOE),        .frame_len(rx_frame_len) ); -     fifo_watcher fifo_watcher       (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), diff --git a/usrp2/gpmc/new_read.v b/usrp2/gpmc/new_read.v new file mode 100644 index 000000000..18615b46a --- /dev/null +++ b/usrp2/gpmc/new_read.v @@ -0,0 +1,64 @@ +// +// 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 new_read +  (input clk, input reset, input clear, +   input [17:0] data_i, input src_rdy_i, output dst_rdy_o, +   output reg [15:0] EM_D, input EM_NCS, input EM_NOE, +   output have_packet, input [15:0] frame_len, output bus_error); + +   wire [17:0] 	data_int; +   wire 	src_rdy_int, dst_rdy_int; +    +   fifo_cascade #(.WIDTH(18), .SIZE(12)) rx_fifo +     (.clk(fifo_clk), .reset(fifo_rst), .clear(clear_rx), +      .datain(data_i), .src_rdy_i(src_rdy_i), .dst_rdy_o(dst_rdy_o), .space(rx_fifo_space), +      .dataout(data_int), .src_rdy_o(src_rdy_int), .dst_rdy_i(dst_rdy_int), .occupied()); + +   /* +   fifo_watcher fifo_watcher +     (.clk(clk), .reset(reset), .clear(clear), +      .src_rdy1(src_rdy_i & ~throttle), .dst_rdy1(dst_rdy_i), .sof1(data_i[16]), .eof1(data_i[17]), +      .src_rdy2(src_rdy_int), .dst_rdy2(dst_rdy_int), .sof2(data_int[16]), .eof2(data_int[17]), +      .have_packet(have_packet), .length(frame_len), .bus_error(bus_error), +      .debug()); +    */ +    +   // Synchronize the async control signals +   reg [1:0] 	cs_del, oe_del; +   reg [15:0] 	counter; +    +   always @(posedge clk) +     if(reset) +       begin +	  cs_del <= 2'b11; +	  oe_del <= 2'b11; +       end +     else +       begin +	  cs_del <= { cs_del[0], EM_NCS }; +	  oe_del <= { oe_del[0], EM_NOE }; +       end + +   assign dst_rdy_int = ( ~cs_del[1] & ~oe_del[1] & oe_del[0]);  // change output on trailing edge + +   //always @(posedge clk)   // 3 cycle latency ( OE -> OE_del -> FIFO -> output REG ) +   always @*                 // 2 cycle latency ( OE -> OE_del -> FIFO ) +     EM_D <= data_int[15:0]; +    +endmodule // new_read  | 
