aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usrp2/control_lib/settings_fifo_ctrl.v14
-rw-r--r--usrp2/coregen/fifo_xlnx_512x36_2clk_prog_full.gise4
-rw-r--r--usrp2/top/N2x0/u2plus_core.v2
-rw-r--r--usrp2/top/USRP2/u2_core.v2
4 files changed, 12 insertions, 10 deletions
diff --git a/usrp2/control_lib/settings_fifo_ctrl.v b/usrp2/control_lib/settings_fifo_ctrl.v
index 564fec97e..160112169 100644
--- a/usrp2/control_lib/settings_fifo_ctrl.v
+++ b/usrp2/control_lib/settings_fifo_ctrl.v
@@ -21,6 +21,7 @@ module settings_fifo_ctrl
#(
parameter FIFO_DEPTH = 6, //64 entries depth
parameter PROT_DEST = 0, //protocol framer destination
+ parameter PROT_HDR = 1, //needs a protocol header?
parameter ACK_SID = 0 //stream ID for packet ACK
)
(
@@ -328,6 +329,9 @@ module settings_fifo_ctrl
localparam WRITE_RB_HDR = 3;
localparam WRITE_RB_DATA = 4;
+ //the state for the start of packet condition
+ localparam WRITE_PKT_HDR = (PROT_HDR)? WRITE_PROT_HDR : WRITE_VRT_HDR;
+
reg [2:0] out_state;
assign out_valid = ~result_fifo_empty;
@@ -335,10 +339,10 @@ module settings_fifo_ctrl
always @(posedge clock) begin
if (reset) begin
- out_state <= WRITE_PROT_HDR;
+ out_state <= WRITE_PKT_HDR;
end
- else if (writing && out_state == WRITE_RB_DATA) begin
- out_state <= WRITE_PROT_HDR;
+ else if (writing && out_data[33]) begin
+ out_state <= WRITE_PKT_HDR;
end
else if (writing) begin
out_state <= out_state + 1;
@@ -358,7 +362,7 @@ module settings_fifo_ctrl
always @* begin
case (out_state)
WRITE_PROT_HDR: out_data_int <= prot_hdr;
- WRITE_VRT_HDR: out_data_int <= {12'b010100000000, out_result_hdr[19:16], 16'd4};
+ WRITE_VRT_HDR: out_data_int <= {12'b010100000000, out_result_hdr[19:16], 2'b0, prot_hdr[15:2]};
WRITE_VRT_SID: out_data_int <= ACK_SID;
WRITE_RB_HDR: out_data_int <= out_result_hdr;
WRITE_RB_DATA: out_data_int <= out_result_data;
@@ -368,7 +372,7 @@ module settings_fifo_ctrl
assign out_data[35:34] = 2'b0;
assign out_data[33] = (out_state == WRITE_RB_DATA);
- assign out_data[32] = (out_state == WRITE_PROT_HDR);
+ assign out_data[32] = (out_state == WRITE_PKT_HDR);
assign out_data[31:0] = out_data_int;
//------------------------------------------------------------------
diff --git a/usrp2/coregen/fifo_xlnx_512x36_2clk_prog_full.gise b/usrp2/coregen/fifo_xlnx_512x36_2clk_prog_full.gise
index 9abec8c3e..660fb2f65 100644
--- a/usrp2/coregen/fifo_xlnx_512x36_2clk_prog_full.gise
+++ b/usrp2/coregen/fifo_xlnx_512x36_2clk_prog_full.gise
@@ -21,9 +21,7 @@
<sourceproject xmlns="http://www.xilinx.com/XMLSchema" xil_pn:fileType="FILE_XISE" xil_pn:name="fifo_xlnx_512x36_2clk_prog_full.xise"/>
- <files xmlns="http://www.xilinx.com/XMLSchema">
- <file xil_pn:fileType="FILE_VEO" xil_pn:name="fifo_xlnx_512x36_2clk_prog_full.veo" xil_pn:origination="imported"/>
- </files>
+ <files xmlns="http://www.xilinx.com/XMLSchema"/>
<transforms xmlns="http://www.xilinx.com/XMLSchema"/>
diff --git a/usrp2/top/N2x0/u2plus_core.v b/usrp2/top/N2x0/u2plus_core.v
index 8bea83081..703e157cc 100644
--- a/usrp2/top/N2x0/u2plus_core.v
+++ b/usrp2/top/N2x0/u2plus_core.v
@@ -515,7 +515,7 @@ module u2plus_core
wire [31:0] sfc_debug;
wire sfc_clear;
- settings_fifo_ctrl #(.PROT_DEST(3)) sfc
+ settings_fifo_ctrl #(.PROT_DEST(3), .PROT_HDR(1)) sfc
(
.clock(dsp_clk), .reset(dsp_rst), .clear(sfc_clear),
.vita_time(vita_time), .perfs_ready(spi_ready),
diff --git a/usrp2/top/USRP2/u2_core.v b/usrp2/top/USRP2/u2_core.v
index d14bc400a..9038ab788 100644
--- a/usrp2/top/USRP2/u2_core.v
+++ b/usrp2/top/USRP2/u2_core.v
@@ -523,7 +523,7 @@ module u2_core
wire [31:0] sfc_debug;
wire sfc_clear;
- settings_fifo_ctrl #(.PROT_DEST(3)) sfc
+ settings_fifo_ctrl #(.PROT_DEST(3), .PROT_HDR(1)) sfc
(
.clock(dsp_clk), .reset(dsp_rst), .clear(sfc_clear),
.vita_time(vita_time), .perfs_ready(spi_ready),