aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp3/lib/axi
diff options
context:
space:
mode:
authorWade Fife <wade.fife@ettus.com>2020-06-19 15:40:12 -0500
committerAaron Rossetto <aaron.rossetto@ni.com>2020-07-30 12:51:41 -0500
commit1e94f85b8bafc3f9acab7ef35d2675fa7e61f6f4 (patch)
tree12ba30a59c8057e355971797d5cc7bf6910f520b /fpga/usrp3/lib/axi
parentb0b3849a18e1f2d3cb255a507b01ac5e7a9416a0 (diff)
downloaduhd-1e94f85b8bafc3f9acab7ef35d2675fa7e61f6f4.tar.gz
uhd-1e94f85b8bafc3f9acab7ef35d2675fa7e61f6f4.tar.bz2
uhd-1e94f85b8bafc3f9acab7ef35d2675fa7e61f6f4.zip
fpga: rfnoc: Add Signal Generator RFNoC block
Diffstat (limited to 'fpga/usrp3/lib/axi')
-rw-r--r--fpga/usrp3/lib/axi/axis_packetize.v38
1 files changed, 21 insertions, 17 deletions
diff --git a/fpga/usrp3/lib/axi/axis_packetize.v b/fpga/usrp3/lib/axi/axis_packetize.v
index 6ee018d9a..bb1297e5c 100644
--- a/fpga/usrp3/lib/axi/axis_packetize.v
+++ b/fpga/usrp3/lib/axi/axis_packetize.v
@@ -69,7 +69,7 @@ module axis_packetize #(
reg [SIZE_W-1:0] word_count = 0; // Count of output words
reg [SIZE_W-1:0] current_size = DEFAULT_SIZE; // Current packet size
- reg gating = 1'b1; // Indicate if output is blocked
+ reg gating = 1'b0; // Indicate if output is blocked
reg mid_packet = 1'b0; // Indicate if we're in the middle of a packet
//---------------------------------------------------------------------------
@@ -80,27 +80,27 @@ module axis_packetize #(
always @(posedge clk) begin
if (rst) begin
- start_of_packet <= 1;
- word_count <= 0;
+ start_of_packet <= 1'b1;
current_size <= DEFAULT_SIZE;
- o_tlast <= 0;
+ word_count <= 0;
+ o_tlast <= (DEFAULT_SIZE == 1);
end else begin
if (gating) begin
// Wait until we're enabled. Setup for the start of the next packet.
- start_of_packet <= 1;
+ start_of_packet <= 1'b1;
current_size <= size;
- word_count <= 0;
+ word_count <= size;
o_tlast <= (size == 1);
end else if (o_tvalid && o_tready) begin
start_of_packet <= 1'b0;
- word_count <= word_count + 1;
+ word_count <= word_count - 1;
if (o_tlast) begin
// This is the last sample, so restart everything for a new packet.
- o_tlast <= (size == 1);
- current_size <= size;
- word_count <= 0;
start_of_packet <= 1'b1;
- end else if (word_count == current_size-2) begin
+ current_size <= size;
+ word_count <= size;
+ o_tlast <= (size == 1);
+ end else if (word_count == 2) begin
// This is the second to last sample, so we assert tlast for the
// last sample.
o_tlast <= 1'b1;
@@ -109,7 +109,7 @@ module axis_packetize #(
// We're waiting for the start of the next packet. Keep checking the
// size input until the next packet starts.
current_size <= size;
- word_count <= 0;
+ word_count <= size;
o_tlast <= (size == 1);
end
end
@@ -119,13 +119,11 @@ module axis_packetize #(
// Handshake Monitor
//---------------------------------------------------------------------------
- // We start out gated to allow a clock cycle for the length to be loaded.
-
// Monitor the state of the handshake so we know when it's OK to
// enable/disable data transfer.
always @(posedge clk) begin
if (rst) begin
- gating = 1'b1;
+ gating = 1'b0;
mid_packet = 1'b0;
end else begin
// Keep track of if we are in the middle of a packet or not. Note that
@@ -142,8 +140,9 @@ module axis_packetize #(
// We can stop gating any time
if (!gate) gating <= 0;
end else begin
- // Only start gating between packets or at the end of a packet
- if ((mid_packet && !o_tvalid) || (o_tvalid && o_tready && o_tlast)) begin
+ // Only start gating between packets when the output is idle, or after
+ // the output transfer completes at the end of packet.
+ if ((!mid_packet && !o_tvalid) || (o_tvalid && o_tready && o_tlast)) begin
gating <= gate;
end
end
@@ -154,6 +153,11 @@ module axis_packetize #(
// Data Pass-Through
//---------------------------------------------------------------------------
+ // Note that "gating" only asserts when a transfer completes at the end of a
+ // packet, or between packets when the output is idle. This ensures that
+ // o_tvalid won't deassert during a transfer and cause a handshake protocol
+ // violation.
+
assign o_tdata = i_tdata;
assign o_tvalid = i_tvalid && !gating;
assign i_tready = FLUSH ? (o_tready || gating) : (o_tready && !gating);