diff options
author | Josh Blum <josh@joshknows.com> | 2011-01-19 17:45:08 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-01-19 17:45:08 -0800 |
commit | 72daf0902c8b8e404774a4e2d2657edf95be5e87 (patch) | |
tree | 0fa7de137a969b838f235dff9a30d8c64a67fdcc /fpga/usrp2/fifo | |
parent | 8e0fbbe47b3c0b2805d2a638da7f363bee2240fd (diff) | |
parent | 1254656ef914482cc111ffa3aca48be5c1e8caaf (diff) | |
download | uhd-72daf0902c8b8e404774a4e2d2657edf95be5e87.tar.gz uhd-72daf0902c8b8e404774a4e2d2657edf95be5e87.tar.bz2 uhd-72daf0902c8b8e404774a4e2d2657edf95be5e87.zip |
Merge branch 'fpga_next' into uhd_with_fpga_next
Diffstat (limited to 'fpga/usrp2/fifo')
-rw-r--r-- | fpga/usrp2/fifo/crossbar36.v | 12 | ||||
-rw-r--r-- | fpga/usrp2/fifo/packet_router.v | 5 | ||||
-rw-r--r-- | fpga/usrp2/fifo/valve36.v | 9 |
3 files changed, 14 insertions, 12 deletions
diff --git a/fpga/usrp2/fifo/crossbar36.v b/fpga/usrp2/fifo/crossbar36.v index d90f5659c..2a046d8bf 100644 --- a/fpga/usrp2/fifo/crossbar36.v +++ b/fpga/usrp2/fifo/crossbar36.v @@ -9,6 +9,8 @@ module crossbar36 output [35:0] data1_o, output src1_rdy_o, input dst1_rdy_i); reg cross_int, active0, active1; + wire active0_next = (src0_rdy_i & dst0_rdy_o)? ~data0_i[33] : active0; + wire active1_next = (src1_rdy_i & dst1_rdy_o)? ~data1_i[33] : active1; assign data0_o = cross_int ? data1_i : data0_i; assign data1_o = cross_int ? data0_i : data1_i; @@ -22,19 +24,19 @@ module crossbar36 always @(posedge clk) if(reset | clear) active0 <= 0; - else if(src0_rdy_i & dst0_rdy_o) - active0 <= ~data0_i[33]; + else + active0 <= active0_next; always @(posedge clk) if(reset | clear) active1 <= 0; - else if(src1_rdy_i & dst1_rdy_o) - active1 <= ~data1_i[33]; + else + active1 <= active1_next; always @(posedge clk) if(reset | clear) cross_int <= 0; - else if(~active0 & ~active1) + else if(~active0_next & ~active1_next) cross_int <= cross; endmodule // crossbar36 diff --git a/fpga/usrp2/fifo/packet_router.v b/fpga/usrp2/fifo/packet_router.v index ff1f80927..161b59016 100644 --- a/fpga/usrp2/fifo/packet_router.v +++ b/fpga/usrp2/fifo/packet_router.v @@ -68,11 +68,10 @@ module packet_router //setting register for mode control wire [31:0] _sreg_mode_ctrl; - wire master_mode_flag = _sreg_mode_ctrl[0]; - setting_reg #(.my_addr(CTRL_BASE+0)) sreg_mode_ctrl( + setting_reg #(.my_addr(CTRL_BASE+0), .width(1)) sreg_mode_ctrl( .clk(stream_clk),.rst(stream_rst), .strobe(set_stb),.addr(set_addr),.in(set_data), - .out(_sreg_mode_ctrl),.changed() + .out(master_mode_flag),.changed() ); //setting register to program the IP address diff --git a/fpga/usrp2/fifo/valve36.v b/fpga/usrp2/fifo/valve36.v index b4b23e5a6..d45eee497 100644 --- a/fpga/usrp2/fifo/valve36.v +++ b/fpga/usrp2/fifo/valve36.v @@ -7,7 +7,8 @@ module valve36 output [35:0] data_o, output src_rdy_o, input dst_rdy_i); reg shutoff_int, active; - + wire active_next = (src_rdy_i & dst_rdy_o)? ~data_i[33] : active; + assign data_o = data_i; assign dst_rdy_o = shutoff_int ? 1'b1 : dst_rdy_i; @@ -16,13 +17,13 @@ module valve36 always @(posedge clk) if(reset | clear) active <= 0; - else if(src_rdy_i & dst_rdy_o) - active <= ~data_i[33]; + else + active <= active_next; always @(posedge clk) if(reset | clear) shutoff_int <= 0; - else if(~active) + else if(~active_next) shutoff_int <= shutoff; endmodule // valve36 |