2014-09-25 00:40:48 -07:00
|
|
|
/*
|
|
|
|
|
2018-02-26 12:50:51 -08:00
|
|
|
Copyright (c) 2014-2018 Alex Forencich
|
2014-09-25 00:40:48 -07:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Language: Verilog 2001
|
|
|
|
|
2021-10-20 17:29:12 -07:00
|
|
|
`resetall
|
2014-09-25 00:40:48 -07:00
|
|
|
`timescale 1ns / 1ps
|
2021-10-20 17:29:12 -07:00
|
|
|
`default_nettype none
|
2014-09-25 00:40:48 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* IP ethernet frame receiver (Ethernet frame in, IP frame out, 64 bit datapath)
|
|
|
|
*/
|
|
|
|
module ip_eth_rx_64
|
|
|
|
(
|
|
|
|
input wire clk,
|
|
|
|
input wire rst,
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ethernet frame input
|
|
|
|
*/
|
2018-11-07 22:35:06 -08:00
|
|
|
input wire s_eth_hdr_valid,
|
|
|
|
output wire s_eth_hdr_ready,
|
|
|
|
input wire [47:0] s_eth_dest_mac,
|
|
|
|
input wire [47:0] s_eth_src_mac,
|
|
|
|
input wire [15:0] s_eth_type,
|
|
|
|
input wire [63:0] s_eth_payload_axis_tdata,
|
|
|
|
input wire [7:0] s_eth_payload_axis_tkeep,
|
|
|
|
input wire s_eth_payload_axis_tvalid,
|
|
|
|
output wire s_eth_payload_axis_tready,
|
|
|
|
input wire s_eth_payload_axis_tlast,
|
|
|
|
input wire s_eth_payload_axis_tuser,
|
2014-09-25 00:40:48 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* IP frame output
|
|
|
|
*/
|
2018-11-07 22:35:06 -08:00
|
|
|
output wire m_ip_hdr_valid,
|
|
|
|
input wire m_ip_hdr_ready,
|
|
|
|
output wire [47:0] m_eth_dest_mac,
|
|
|
|
output wire [47:0] m_eth_src_mac,
|
|
|
|
output wire [15:0] m_eth_type,
|
|
|
|
output wire [3:0] m_ip_version,
|
|
|
|
output wire [3:0] m_ip_ihl,
|
|
|
|
output wire [5:0] m_ip_dscp,
|
|
|
|
output wire [1:0] m_ip_ecn,
|
|
|
|
output wire [15:0] m_ip_length,
|
|
|
|
output wire [15:0] m_ip_identification,
|
|
|
|
output wire [2:0] m_ip_flags,
|
|
|
|
output wire [12:0] m_ip_fragment_offset,
|
|
|
|
output wire [7:0] m_ip_ttl,
|
|
|
|
output wire [7:0] m_ip_protocol,
|
|
|
|
output wire [15:0] m_ip_header_checksum,
|
|
|
|
output wire [31:0] m_ip_source_ip,
|
|
|
|
output wire [31:0] m_ip_dest_ip,
|
|
|
|
output wire [63:0] m_ip_payload_axis_tdata,
|
|
|
|
output wire [7:0] m_ip_payload_axis_tkeep,
|
|
|
|
output wire m_ip_payload_axis_tvalid,
|
|
|
|
input wire m_ip_payload_axis_tready,
|
|
|
|
output wire m_ip_payload_axis_tlast,
|
|
|
|
output wire m_ip_payload_axis_tuser,
|
2014-09-25 00:40:48 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Status signals
|
|
|
|
*/
|
|
|
|
output wire busy,
|
|
|
|
output wire error_header_early_termination,
|
|
|
|
output wire error_payload_early_termination,
|
|
|
|
output wire error_invalid_header,
|
|
|
|
output wire error_invalid_checksum
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
IP Frame
|
|
|
|
|
|
|
|
Field Length
|
|
|
|
Destination MAC address 6 octets
|
|
|
|
Source MAC address 6 octets
|
|
|
|
Ethertype (0x0800) 2 octets
|
|
|
|
Version (4) 4 bits
|
|
|
|
IHL (5-15) 4 bits
|
|
|
|
DSCP (0) 6 bits
|
|
|
|
ECN (0) 2 bits
|
|
|
|
length 2 octets
|
|
|
|
identification (0?) 2 octets
|
|
|
|
flags (010) 3 bits
|
|
|
|
fragment offset (0) 13 bits
|
|
|
|
time to live (64?) 1 octet
|
|
|
|
protocol 1 octet
|
|
|
|
header checksum 2 octets
|
|
|
|
source IP 4 octets
|
|
|
|
destination IP 4 octets
|
|
|
|
options (IHL-5)*4 octets
|
|
|
|
payload length octets
|
|
|
|
|
2014-10-28 01:00:52 -07:00
|
|
|
This module receives an Ethernet frame with header fields in parallel and
|
|
|
|
payload on an AXI stream interface, decodes and strips the IP header fields,
|
|
|
|
then produces the header fields in parallel along with the IP payload in a
|
|
|
|
separate AXI stream.
|
2014-09-25 00:40:48 -07:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-10-28 01:00:52 -07:00
|
|
|
localparam [2:0]
|
|
|
|
STATE_IDLE = 3'd0,
|
|
|
|
STATE_READ_HEADER = 3'd1,
|
|
|
|
STATE_READ_PAYLOAD = 3'd2,
|
|
|
|
STATE_READ_PAYLOAD_LAST = 3'd3,
|
|
|
|
STATE_WAIT_LAST = 3'd4;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2014-10-28 01:00:52 -07:00
|
|
|
reg [2:0] state_reg = STATE_IDLE, state_next;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
|
|
|
// datapath control signals
|
|
|
|
reg store_eth_hdr;
|
|
|
|
reg store_hdr_word_0;
|
|
|
|
reg store_hdr_word_1;
|
|
|
|
reg store_hdr_word_2;
|
2014-10-28 01:00:52 -07:00
|
|
|
reg store_last_word;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
|
|
|
reg flush_save;
|
|
|
|
reg transfer_in_save;
|
|
|
|
|
2019-06-16 23:53:26 -07:00
|
|
|
reg [5:0] hdr_ptr_reg = 6'd0, hdr_ptr_next;
|
|
|
|
reg [15:0] word_count_reg = 16'd0, word_count_next;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2019-06-16 22:01:11 -07:00
|
|
|
reg [16:0] hdr_sum_high_reg = 17'd0;
|
|
|
|
reg [16:0] hdr_sum_low_reg = 17'd0;
|
|
|
|
reg [19:0] hdr_sum_temp;
|
|
|
|
reg [19:0] hdr_sum_reg = 20'd0, hdr_sum_next;
|
2015-11-09 23:50:34 -08:00
|
|
|
reg check_hdr_reg = 1'b0, check_hdr_next;
|
|
|
|
|
|
|
|
reg [63:0] last_word_data_reg = 64'd0;
|
|
|
|
reg [7:0] last_word_keep_reg = 8'd0;
|
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
reg s_eth_hdr_ready_reg = 1'b0, s_eth_hdr_ready_next;
|
|
|
|
reg s_eth_payload_axis_tready_reg = 1'b0, s_eth_payload_axis_tready_next;
|
|
|
|
|
|
|
|
reg m_ip_hdr_valid_reg = 1'b0, m_ip_hdr_valid_next;
|
|
|
|
reg [47:0] m_eth_dest_mac_reg = 48'd0;
|
|
|
|
reg [47:0] m_eth_src_mac_reg = 48'd0;
|
|
|
|
reg [15:0] m_eth_type_reg = 16'd0;
|
|
|
|
reg [3:0] m_ip_version_reg = 4'd0;
|
|
|
|
reg [3:0] m_ip_ihl_reg = 4'd0;
|
|
|
|
reg [5:0] m_ip_dscp_reg = 6'd0;
|
|
|
|
reg [1:0] m_ip_ecn_reg = 2'd0;
|
|
|
|
reg [15:0] m_ip_length_reg = 16'd0;
|
|
|
|
reg [15:0] m_ip_identification_reg = 16'd0;
|
|
|
|
reg [2:0] m_ip_flags_reg = 3'd0;
|
|
|
|
reg [12:0] m_ip_fragment_offset_reg = 13'd0;
|
|
|
|
reg [7:0] m_ip_ttl_reg = 8'd0;
|
|
|
|
reg [7:0] m_ip_protocol_reg = 8'd0;
|
|
|
|
reg [15:0] m_ip_header_checksum_reg = 16'd0;
|
|
|
|
reg [31:0] m_ip_source_ip_reg = 32'd0;
|
|
|
|
reg [31:0] m_ip_dest_ip_reg = 32'd0;
|
2015-11-09 23:50:34 -08:00
|
|
|
|
|
|
|
reg busy_reg = 1'b0;
|
|
|
|
reg error_header_early_termination_reg = 1'b0, error_header_early_termination_next;
|
|
|
|
reg error_payload_early_termination_reg = 1'b0, error_payload_early_termination_next;
|
|
|
|
reg error_invalid_header_reg = 1'b0, error_invalid_header_next;
|
|
|
|
reg error_invalid_checksum_reg = 1'b0, error_invalid_checksum_next;
|
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
reg [63:0] save_eth_payload_axis_tdata_reg = 64'd0;
|
|
|
|
reg [7:0] save_eth_payload_axis_tkeep_reg = 8'd0;
|
|
|
|
reg save_eth_payload_axis_tlast_reg = 1'b0;
|
|
|
|
reg save_eth_payload_axis_tuser_reg = 1'b0;
|
|
|
|
|
|
|
|
reg [63:0] shift_eth_payload_axis_tdata;
|
|
|
|
reg [7:0] shift_eth_payload_axis_tkeep;
|
|
|
|
reg shift_eth_payload_axis_tvalid;
|
|
|
|
reg shift_eth_payload_axis_tlast;
|
|
|
|
reg shift_eth_payload_axis_tuser;
|
|
|
|
reg shift_eth_payload_s_tready;
|
2019-06-16 19:57:52 -07:00
|
|
|
reg shift_eth_payload_extra_cycle_reg = 1'b0;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2014-10-28 01:00:52 -07:00
|
|
|
// internal datapath
|
2018-11-07 22:35:06 -08:00
|
|
|
reg [63:0] m_ip_payload_axis_tdata_int;
|
|
|
|
reg [7:0] m_ip_payload_axis_tkeep_int;
|
|
|
|
reg m_ip_payload_axis_tvalid_int;
|
|
|
|
reg m_ip_payload_axis_tready_int_reg = 1'b0;
|
|
|
|
reg m_ip_payload_axis_tlast_int;
|
|
|
|
reg m_ip_payload_axis_tuser_int;
|
|
|
|
wire m_ip_payload_axis_tready_int_early;
|
|
|
|
|
|
|
|
assign s_eth_hdr_ready = s_eth_hdr_ready_reg;
|
|
|
|
assign s_eth_payload_axis_tready = s_eth_payload_axis_tready_reg;
|
|
|
|
|
|
|
|
assign m_ip_hdr_valid = m_ip_hdr_valid_reg;
|
|
|
|
assign m_eth_dest_mac = m_eth_dest_mac_reg;
|
|
|
|
assign m_eth_src_mac = m_eth_src_mac_reg;
|
|
|
|
assign m_eth_type = m_eth_type_reg;
|
|
|
|
assign m_ip_version = m_ip_version_reg;
|
|
|
|
assign m_ip_ihl = m_ip_ihl_reg;
|
|
|
|
assign m_ip_dscp = m_ip_dscp_reg;
|
|
|
|
assign m_ip_ecn = m_ip_ecn_reg;
|
|
|
|
assign m_ip_length = m_ip_length_reg;
|
|
|
|
assign m_ip_identification = m_ip_identification_reg;
|
|
|
|
assign m_ip_flags = m_ip_flags_reg;
|
|
|
|
assign m_ip_fragment_offset = m_ip_fragment_offset_reg;
|
|
|
|
assign m_ip_ttl = m_ip_ttl_reg;
|
|
|
|
assign m_ip_protocol = m_ip_protocol_reg;
|
|
|
|
assign m_ip_header_checksum = m_ip_header_checksum_reg;
|
|
|
|
assign m_ip_source_ip = m_ip_source_ip_reg;
|
|
|
|
assign m_ip_dest_ip = m_ip_dest_ip_reg;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
|
|
|
assign busy = busy_reg;
|
|
|
|
assign error_header_early_termination = error_header_early_termination_reg;
|
|
|
|
assign error_payload_early_termination = error_payload_early_termination_reg;
|
|
|
|
assign error_invalid_header = error_invalid_header_reg;
|
|
|
|
assign error_invalid_checksum = error_invalid_checksum_reg;
|
|
|
|
|
|
|
|
function [3:0] keep2count;
|
|
|
|
input [7:0] k;
|
2018-06-14 15:20:20 -07:00
|
|
|
casez (k)
|
|
|
|
8'bzzzzzzz0: keep2count = 4'd0;
|
|
|
|
8'bzzzzzz01: keep2count = 4'd1;
|
|
|
|
8'bzzzzz011: keep2count = 4'd2;
|
|
|
|
8'bzzzz0111: keep2count = 4'd3;
|
|
|
|
8'bzzz01111: keep2count = 4'd4;
|
|
|
|
8'bzz011111: keep2count = 4'd5;
|
|
|
|
8'bz0111111: keep2count = 4'd6;
|
2015-11-09 23:50:34 -08:00
|
|
|
8'b01111111: keep2count = 4'd7;
|
|
|
|
8'b11111111: keep2count = 4'd8;
|
2014-09-25 00:40:48 -07:00
|
|
|
endcase
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function [7:0] count2keep;
|
|
|
|
input [3:0] k;
|
|
|
|
case (k)
|
|
|
|
4'd0: count2keep = 8'b00000000;
|
|
|
|
4'd1: count2keep = 8'b00000001;
|
|
|
|
4'd2: count2keep = 8'b00000011;
|
|
|
|
4'd3: count2keep = 8'b00000111;
|
|
|
|
4'd4: count2keep = 8'b00001111;
|
|
|
|
4'd5: count2keep = 8'b00011111;
|
|
|
|
4'd6: count2keep = 8'b00111111;
|
|
|
|
4'd7: count2keep = 8'b01111111;
|
|
|
|
4'd8: count2keep = 8'b11111111;
|
|
|
|
endcase
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
always @* begin
|
2018-11-07 22:35:06 -08:00
|
|
|
shift_eth_payload_axis_tdata[31:0] = save_eth_payload_axis_tdata_reg[63:32];
|
|
|
|
shift_eth_payload_axis_tkeep[3:0] = save_eth_payload_axis_tkeep_reg[7:4];
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2019-06-16 19:57:52 -07:00
|
|
|
if (shift_eth_payload_extra_cycle_reg) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
shift_eth_payload_axis_tdata[63:32] = 32'd0;
|
|
|
|
shift_eth_payload_axis_tkeep[7:4] = 4'd0;
|
|
|
|
shift_eth_payload_axis_tvalid = 1'b1;
|
|
|
|
shift_eth_payload_axis_tlast = save_eth_payload_axis_tlast_reg;
|
|
|
|
shift_eth_payload_axis_tuser = save_eth_payload_axis_tuser_reg;
|
|
|
|
shift_eth_payload_s_tready = flush_save;
|
2014-09-25 00:40:48 -07:00
|
|
|
end else begin
|
2018-11-07 22:35:06 -08:00
|
|
|
shift_eth_payload_axis_tdata[63:32] = s_eth_payload_axis_tdata[31:0];
|
|
|
|
shift_eth_payload_axis_tkeep[7:4] = s_eth_payload_axis_tkeep[3:0];
|
|
|
|
shift_eth_payload_axis_tvalid = s_eth_payload_axis_tvalid;
|
|
|
|
shift_eth_payload_axis_tlast = (s_eth_payload_axis_tlast && (s_eth_payload_axis_tkeep[7:4] == 0));
|
|
|
|
shift_eth_payload_axis_tuser = (s_eth_payload_axis_tuser && (s_eth_payload_axis_tkeep[7:4] == 0));
|
|
|
|
shift_eth_payload_s_tready = !(s_eth_payload_axis_tlast && s_eth_payload_axis_tvalid && transfer_in_save);
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
always @* begin
|
2015-03-09 02:38:39 -07:00
|
|
|
state_next = STATE_IDLE;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
flush_save = 1'b0;
|
|
|
|
transfer_in_save = 1'b0;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_hdr_ready_next = 1'b0;
|
|
|
|
s_eth_payload_axis_tready_next = 1'b0;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
store_eth_hdr = 1'b0;
|
|
|
|
store_hdr_word_0 = 1'b0;
|
|
|
|
store_hdr_word_1 = 1'b0;
|
|
|
|
store_hdr_word_2 = 1'b0;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
store_last_word = 1'b0;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2019-06-16 23:53:26 -07:00
|
|
|
hdr_ptr_next = hdr_ptr_reg;
|
|
|
|
word_count_next = word_count_reg;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
hdr_sum_temp = 32'd0;
|
2014-09-25 00:40:48 -07:00
|
|
|
hdr_sum_next = hdr_sum_reg;
|
2015-05-08 21:06:33 -07:00
|
|
|
check_hdr_next = check_hdr_reg;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_hdr_valid_next = m_ip_hdr_valid_reg && !m_ip_hdr_ready;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
error_header_early_termination_next = 1'b0;
|
|
|
|
error_payload_early_termination_next = 1'b0;
|
|
|
|
error_invalid_header_next = 1'b0;
|
|
|
|
error_invalid_checksum_next = 1'b0;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tdata_int = 64'd0;
|
|
|
|
m_ip_payload_axis_tkeep_int = 8'd0;
|
|
|
|
m_ip_payload_axis_tvalid_int = 1'b0;
|
|
|
|
m_ip_payload_axis_tlast_int = 1'b0;
|
|
|
|
m_ip_payload_axis_tuser_int = 1'b0;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2014-09-25 00:40:48 -07:00
|
|
|
case (state_reg)
|
|
|
|
STATE_IDLE: begin
|
|
|
|
// idle state - wait for header
|
2019-06-16 23:53:26 -07:00
|
|
|
hdr_ptr_next = 6'd0;
|
2015-11-09 23:50:34 -08:00
|
|
|
hdr_sum_next = 32'd0;
|
|
|
|
flush_save = 1'b1;
|
2018-11-07 23:10:07 -08:00
|
|
|
s_eth_hdr_ready_next = !m_ip_hdr_valid_next;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
if (s_eth_hdr_ready && s_eth_hdr_valid) begin
|
|
|
|
s_eth_hdr_ready_next = 1'b0;
|
|
|
|
s_eth_payload_axis_tready_next = 1'b1;
|
2015-11-09 23:50:34 -08:00
|
|
|
store_eth_hdr = 1'b1;
|
2014-09-25 00:40:48 -07:00
|
|
|
state_next = STATE_READ_HEADER;
|
|
|
|
end else begin
|
|
|
|
state_next = STATE_IDLE;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
STATE_READ_HEADER: begin
|
2014-10-28 01:00:52 -07:00
|
|
|
// read header
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_payload_axis_tready_next = shift_eth_payload_s_tready;
|
2019-06-16 23:53:26 -07:00
|
|
|
word_count_next = m_ip_length_reg - 5*4;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
if (s_eth_payload_axis_tvalid) begin
|
2014-09-25 00:40:48 -07:00
|
|
|
// word transfer in - store it
|
2019-06-16 23:53:26 -07:00
|
|
|
hdr_ptr_next = hdr_ptr_reg + 6'd8;
|
2015-11-09 23:50:34 -08:00
|
|
|
transfer_in_save = 1'b1;
|
2014-09-25 00:40:48 -07:00
|
|
|
state_next = STATE_READ_HEADER;
|
|
|
|
|
2019-06-16 23:53:26 -07:00
|
|
|
case (hdr_ptr_reg)
|
|
|
|
6'h00: begin
|
2015-11-09 23:50:34 -08:00
|
|
|
store_hdr_word_0 = 1'b1;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
2019-06-16 23:53:26 -07:00
|
|
|
6'h08: begin
|
2015-11-09 23:50:34 -08:00
|
|
|
store_hdr_word_1 = 1'b1;
|
2019-06-16 22:01:11 -07:00
|
|
|
hdr_sum_next = hdr_sum_high_reg + hdr_sum_low_reg;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
2019-06-16 23:53:26 -07:00
|
|
|
6'h10: begin
|
2015-11-09 23:50:34 -08:00
|
|
|
store_hdr_word_2 = 1'b1;
|
2019-06-16 22:01:11 -07:00
|
|
|
hdr_sum_next = hdr_sum_reg + hdr_sum_high_reg + hdr_sum_low_reg;
|
2015-05-08 21:06:33 -07:00
|
|
|
|
|
|
|
// check header checksum on next cycle for improved timing
|
2015-11-09 23:50:34 -08:00
|
|
|
check_hdr_next = 1'b1;
|
2015-05-08 21:06:33 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
if (m_ip_version_reg != 4'd4 || m_ip_ihl_reg != 4'd5) begin
|
2015-11-09 23:50:34 -08:00
|
|
|
error_invalid_header_next = 1'b1;
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_payload_axis_tready_next = shift_eth_payload_s_tready;
|
2014-09-25 00:40:48 -07:00
|
|
|
state_next = STATE_WAIT_LAST;
|
|
|
|
end else begin
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_payload_axis_tready_next = m_ip_payload_axis_tready_int_early && shift_eth_payload_s_tready;
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_READ_PAYLOAD;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
endcase
|
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
if (shift_eth_payload_axis_tlast) begin
|
2015-11-09 23:50:34 -08:00
|
|
|
error_header_early_termination_next = 1'b1;
|
|
|
|
error_invalid_header_next = 1'b0;
|
|
|
|
error_invalid_checksum_next = 1'b0;
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_hdr_valid_next = 1'b0;
|
2018-11-07 23:10:07 -08:00
|
|
|
s_eth_hdr_ready_next = !m_ip_hdr_valid_next;
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_payload_axis_tready_next = 1'b0;
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_IDLE;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
end else begin
|
|
|
|
state_next = STATE_READ_HEADER;
|
|
|
|
end
|
|
|
|
end
|
2014-10-28 01:00:52 -07:00
|
|
|
STATE_READ_PAYLOAD: begin
|
|
|
|
// read payload
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_payload_axis_tready_next = m_ip_payload_axis_tready_int_early && shift_eth_payload_s_tready;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tdata_int = shift_eth_payload_axis_tdata;
|
|
|
|
m_ip_payload_axis_tkeep_int = shift_eth_payload_axis_tkeep;
|
|
|
|
m_ip_payload_axis_tlast_int = shift_eth_payload_axis_tlast;
|
|
|
|
m_ip_payload_axis_tuser_int = shift_eth_payload_axis_tuser;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2019-06-16 20:01:08 -07:00
|
|
|
store_last_word = 1'b1;
|
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
if (m_ip_payload_axis_tready_int_reg && shift_eth_payload_axis_tvalid) begin
|
2014-10-28 01:00:52 -07:00
|
|
|
// word transfer through
|
2019-06-16 23:53:26 -07:00
|
|
|
word_count_next = word_count_reg - 16'd8;
|
2015-11-09 23:50:34 -08:00
|
|
|
transfer_in_save = 1'b1;
|
2021-12-31 22:58:38 -08:00
|
|
|
m_ip_payload_axis_tvalid_int = 1'b1;
|
2019-06-19 15:06:55 -07:00
|
|
|
if (word_count_reg <= 8) begin
|
2014-09-25 00:40:48 -07:00
|
|
|
// have entire payload
|
2019-06-16 23:53:26 -07:00
|
|
|
m_ip_payload_axis_tkeep_int = shift_eth_payload_axis_tkeep & count2keep(word_count_reg);
|
2018-11-07 22:35:06 -08:00
|
|
|
if (shift_eth_payload_axis_tlast) begin
|
2019-06-19 15:06:55 -07:00
|
|
|
if (keep2count(shift_eth_payload_axis_tkeep) < word_count_reg[4:0]) begin
|
|
|
|
// end of frame, but length does not match
|
|
|
|
error_payload_early_termination_next = 1'b1;
|
|
|
|
m_ip_payload_axis_tuser_int = 1'b1;
|
|
|
|
end
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_payload_axis_tready_next = 1'b0;
|
2015-11-09 23:50:34 -08:00
|
|
|
flush_save = 1'b1;
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_hdr_ready_next = !m_ip_hdr_valid_reg && !check_hdr_reg;
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_IDLE;
|
2014-09-25 00:40:48 -07:00
|
|
|
end else begin
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tvalid_int = 1'b0;
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_READ_PAYLOAD_LAST;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
|
|
|
end else begin
|
2018-11-07 22:35:06 -08:00
|
|
|
if (shift_eth_payload_axis_tlast) begin
|
2014-09-25 00:40:48 -07:00
|
|
|
// end of frame, but length does not match
|
2015-11-09 23:50:34 -08:00
|
|
|
error_payload_early_termination_next = 1'b1;
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tuser_int = 1'b1;
|
|
|
|
s_eth_payload_axis_tready_next = 1'b0;
|
2015-11-09 23:50:34 -08:00
|
|
|
flush_save = 1'b1;
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_hdr_ready_next = !m_ip_hdr_valid_reg && !check_hdr_reg;
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_IDLE;
|
2014-09-25 00:40:48 -07:00
|
|
|
end else begin
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_READ_PAYLOAD;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end else begin
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_READ_PAYLOAD;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
2015-05-08 21:06:33 -07:00
|
|
|
|
|
|
|
if (check_hdr_reg) begin
|
2015-11-09 23:50:34 -08:00
|
|
|
check_hdr_next = 1'b0;
|
2015-05-08 21:06:33 -07:00
|
|
|
|
2019-06-16 22:01:11 -07:00
|
|
|
hdr_sum_temp = hdr_sum_reg[15:0] + hdr_sum_reg[19:16] + hdr_sum_low_reg;
|
2015-05-08 21:06:33 -07:00
|
|
|
|
2019-06-16 22:01:11 -07:00
|
|
|
if (hdr_sum_temp != 19'h0ffff && hdr_sum_temp != 19'h1fffe) begin
|
2015-05-08 21:06:33 -07:00
|
|
|
// bad checksum
|
2015-11-09 23:50:34 -08:00
|
|
|
error_invalid_checksum_next = 1'b1;
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tvalid_int = 1'b0;
|
|
|
|
if (shift_eth_payload_axis_tlast && shift_eth_payload_axis_tvalid) begin
|
2015-05-08 21:06:33 -07:00
|
|
|
// only one payload cycle; return to idle now
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_hdr_ready_next = !m_ip_hdr_valid_reg && !check_hdr_reg;
|
2015-05-08 21:06:33 -07:00
|
|
|
state_next = STATE_IDLE;
|
|
|
|
end else begin
|
|
|
|
// drop payload
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_payload_axis_tready_next = shift_eth_payload_s_tready;
|
2015-05-08 21:06:33 -07:00
|
|
|
state_next = STATE_WAIT_LAST;
|
|
|
|
end
|
|
|
|
end else begin
|
|
|
|
// good checksum; transfer header
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_hdr_valid_next = 1'b1;
|
2015-05-08 21:06:33 -07:00
|
|
|
end
|
|
|
|
end
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
2014-10-28 01:00:52 -07:00
|
|
|
STATE_READ_PAYLOAD_LAST: begin
|
|
|
|
// read and discard until end of frame
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_payload_axis_tready_next = m_ip_payload_axis_tready_int_early && shift_eth_payload_s_tready;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tdata_int = last_word_data_reg;
|
|
|
|
m_ip_payload_axis_tkeep_int = last_word_keep_reg;
|
|
|
|
m_ip_payload_axis_tlast_int = shift_eth_payload_axis_tlast;
|
|
|
|
m_ip_payload_axis_tuser_int = shift_eth_payload_axis_tuser;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
if (m_ip_payload_axis_tready_int_reg && shift_eth_payload_axis_tvalid) begin
|
2015-11-09 23:50:34 -08:00
|
|
|
transfer_in_save = 1'b1;
|
2018-11-07 22:35:06 -08:00
|
|
|
if (shift_eth_payload_axis_tlast) begin
|
|
|
|
s_eth_payload_axis_tready_next = 1'b0;
|
2015-11-09 23:50:34 -08:00
|
|
|
flush_save = 1'b1;
|
2018-11-07 23:10:07 -08:00
|
|
|
s_eth_hdr_ready_next = !m_ip_hdr_valid_next;
|
2021-12-31 22:58:38 -08:00
|
|
|
m_ip_payload_axis_tvalid_int = 1'b1;
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_IDLE;
|
2014-09-25 00:40:48 -07:00
|
|
|
end else begin
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_READ_PAYLOAD_LAST;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
|
|
|
end else begin
|
2014-10-28 01:00:52 -07:00
|
|
|
state_next = STATE_READ_PAYLOAD_LAST;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
STATE_WAIT_LAST: begin
|
2014-10-28 01:00:52 -07:00
|
|
|
// read and discard until end of frame
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_payload_axis_tready_next = shift_eth_payload_s_tready;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
if (shift_eth_payload_axis_tvalid) begin
|
2015-11-09 23:50:34 -08:00
|
|
|
transfer_in_save = 1'b1;
|
2018-11-07 22:35:06 -08:00
|
|
|
if (shift_eth_payload_axis_tlast) begin
|
|
|
|
s_eth_payload_axis_tready_next = 1'b0;
|
2015-11-09 23:50:34 -08:00
|
|
|
flush_save = 1'b1;
|
2018-11-07 23:10:07 -08:00
|
|
|
s_eth_hdr_ready_next = !m_ip_hdr_valid_next;
|
2014-09-25 00:40:48 -07:00
|
|
|
state_next = STATE_IDLE;
|
|
|
|
end else begin
|
|
|
|
state_next = STATE_WAIT_LAST;
|
|
|
|
end
|
|
|
|
end else begin
|
|
|
|
state_next = STATE_WAIT_LAST;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
endcase
|
|
|
|
end
|
|
|
|
|
2015-10-09 22:36:58 -07:00
|
|
|
always @(posedge clk) begin
|
2014-09-25 00:40:48 -07:00
|
|
|
if (rst) begin
|
|
|
|
state_reg <= STATE_IDLE;
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_hdr_ready_reg <= 1'b0;
|
|
|
|
s_eth_payload_axis_tready_reg <= 1'b0;
|
|
|
|
m_ip_hdr_valid_reg <= 1'b0;
|
|
|
|
save_eth_payload_axis_tlast_reg <= 1'b0;
|
2019-06-16 19:57:52 -07:00
|
|
|
shift_eth_payload_extra_cycle_reg <= 1'b0;
|
2015-11-09 23:50:34 -08:00
|
|
|
busy_reg <= 1'b0;
|
|
|
|
error_header_early_termination_reg <= 1'b0;
|
|
|
|
error_payload_early_termination_reg <= 1'b0;
|
|
|
|
error_invalid_header_reg <= 1'b0;
|
|
|
|
error_invalid_checksum_reg <= 1'b0;
|
2014-09-25 00:40:48 -07:00
|
|
|
end else begin
|
|
|
|
state_reg <= state_next;
|
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
s_eth_hdr_ready_reg <= s_eth_hdr_ready_next;
|
|
|
|
s_eth_payload_axis_tready_reg <= s_eth_payload_axis_tready_next;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_hdr_valid_reg <= m_ip_hdr_valid_next;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
|
|
|
error_header_early_termination_reg <= error_header_early_termination_next;
|
|
|
|
error_payload_early_termination_reg <= error_payload_early_termination_next;
|
|
|
|
error_invalid_header_reg <= error_invalid_header_next;
|
|
|
|
error_invalid_checksum_reg <= error_invalid_checksum_next;
|
|
|
|
|
|
|
|
busy_reg <= state_next != STATE_IDLE;
|
|
|
|
|
|
|
|
// datapath
|
2015-11-09 23:50:34 -08:00
|
|
|
if (flush_save) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
save_eth_payload_axis_tlast_reg <= 1'b0;
|
2019-06-16 19:57:52 -07:00
|
|
|
shift_eth_payload_extra_cycle_reg <= 1'b0;
|
2015-11-09 23:50:34 -08:00
|
|
|
end else if (transfer_in_save) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
save_eth_payload_axis_tlast_reg <= s_eth_payload_axis_tlast;
|
2019-06-16 19:57:52 -07:00
|
|
|
shift_eth_payload_extra_cycle_reg <= s_eth_payload_axis_tlast && (s_eth_payload_axis_tkeep[7:4] != 0);
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
2015-11-09 23:50:34 -08:00
|
|
|
end
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2019-06-16 23:53:26 -07:00
|
|
|
hdr_ptr_reg <= hdr_ptr_next;
|
|
|
|
word_count_reg <= word_count_next;
|
|
|
|
|
|
|
|
hdr_sum_reg <= hdr_sum_next;
|
|
|
|
check_hdr_reg <= check_hdr_next;
|
|
|
|
|
2019-06-16 22:01:11 -07:00
|
|
|
if (s_eth_payload_axis_tvalid) begin
|
|
|
|
hdr_sum_low_reg <= s_eth_payload_axis_tdata[15:0] + s_eth_payload_axis_tdata[31:16];
|
|
|
|
hdr_sum_high_reg <= s_eth_payload_axis_tdata[47:32] + s_eth_payload_axis_tdata[63:48];
|
|
|
|
end
|
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
// datapath
|
|
|
|
if (store_eth_hdr) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
m_eth_dest_mac_reg <= s_eth_dest_mac;
|
|
|
|
m_eth_src_mac_reg <= s_eth_src_mac;
|
|
|
|
m_eth_type_reg <= s_eth_type;
|
2015-11-09 23:50:34 -08:00
|
|
|
end
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
if (store_last_word) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
last_word_data_reg <= m_ip_payload_axis_tdata_int;
|
|
|
|
last_word_keep_reg <= m_ip_payload_axis_tkeep_int;
|
2015-11-09 23:50:34 -08:00
|
|
|
end
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
if (store_hdr_word_0) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
{m_ip_version_reg, m_ip_ihl_reg} <= s_eth_payload_axis_tdata[ 7: 0];
|
|
|
|
{m_ip_dscp_reg, m_ip_ecn_reg} <= s_eth_payload_axis_tdata[15: 8];
|
|
|
|
m_ip_length_reg[15: 8] <= s_eth_payload_axis_tdata[23:16];
|
|
|
|
m_ip_length_reg[ 7: 0] <= s_eth_payload_axis_tdata[31:24];
|
|
|
|
m_ip_identification_reg[15: 8] <= s_eth_payload_axis_tdata[39:32];
|
|
|
|
m_ip_identification_reg[ 7: 0] <= s_eth_payload_axis_tdata[47:40];
|
|
|
|
{m_ip_flags_reg, m_ip_fragment_offset_reg[12:8]} <= s_eth_payload_axis_tdata[55:48];
|
|
|
|
m_ip_fragment_offset_reg[ 7:0] <= s_eth_payload_axis_tdata[63:56];
|
2015-11-09 23:50:34 -08:00
|
|
|
end
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
if (store_hdr_word_1) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_ttl_reg <= s_eth_payload_axis_tdata[ 7: 0];
|
|
|
|
m_ip_protocol_reg <= s_eth_payload_axis_tdata[15: 8];
|
|
|
|
m_ip_header_checksum_reg[15: 8] <= s_eth_payload_axis_tdata[23:16];
|
|
|
|
m_ip_header_checksum_reg[ 7: 0] <= s_eth_payload_axis_tdata[31:24];
|
|
|
|
m_ip_source_ip_reg[31:24] <= s_eth_payload_axis_tdata[39:32];
|
|
|
|
m_ip_source_ip_reg[23:16] <= s_eth_payload_axis_tdata[47:40];
|
|
|
|
m_ip_source_ip_reg[15: 8] <= s_eth_payload_axis_tdata[55:48];
|
|
|
|
m_ip_source_ip_reg[ 7: 0] <= s_eth_payload_axis_tdata[63:56];
|
2015-11-09 23:50:34 -08:00
|
|
|
end
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
if (store_hdr_word_2) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_dest_ip_reg[31:24] <= s_eth_payload_axis_tdata[ 7: 0];
|
|
|
|
m_ip_dest_ip_reg[23:16] <= s_eth_payload_axis_tdata[15: 8];
|
|
|
|
m_ip_dest_ip_reg[15: 8] <= s_eth_payload_axis_tdata[23:16];
|
|
|
|
m_ip_dest_ip_reg[ 7: 0] <= s_eth_payload_axis_tdata[31:24];
|
2015-11-09 23:50:34 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
if (transfer_in_save) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
save_eth_payload_axis_tdata_reg <= s_eth_payload_axis_tdata;
|
|
|
|
save_eth_payload_axis_tkeep_reg <= s_eth_payload_axis_tkeep;
|
|
|
|
save_eth_payload_axis_tuser_reg <= s_eth_payload_axis_tuser;
|
2014-10-28 01:00:52 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
// output datapath logic
|
2018-11-07 22:35:06 -08:00
|
|
|
reg [63:0] m_ip_payload_axis_tdata_reg = 64'd0;
|
|
|
|
reg [7:0] m_ip_payload_axis_tkeep_reg = 8'd0;
|
|
|
|
reg m_ip_payload_axis_tvalid_reg = 1'b0, m_ip_payload_axis_tvalid_next;
|
|
|
|
reg m_ip_payload_axis_tlast_reg = 1'b0;
|
|
|
|
reg m_ip_payload_axis_tuser_reg = 1'b0;
|
|
|
|
|
|
|
|
reg [63:0] temp_m_ip_payload_axis_tdata_reg = 64'd0;
|
|
|
|
reg [7:0] temp_m_ip_payload_axis_tkeep_reg = 8'd0;
|
|
|
|
reg temp_m_ip_payload_axis_tvalid_reg = 1'b0, temp_m_ip_payload_axis_tvalid_next;
|
|
|
|
reg temp_m_ip_payload_axis_tlast_reg = 1'b0;
|
|
|
|
reg temp_m_ip_payload_axis_tuser_reg = 1'b0;
|
2015-11-09 23:50:34 -08:00
|
|
|
|
|
|
|
// datapath control
|
|
|
|
reg store_ip_payload_int_to_output;
|
|
|
|
reg store_ip_payload_int_to_temp;
|
2018-11-07 22:35:06 -08:00
|
|
|
reg store_ip_payload_axis_temp_to_output;
|
2014-09-25 00:40:48 -07:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
assign m_ip_payload_axis_tdata = m_ip_payload_axis_tdata_reg;
|
|
|
|
assign m_ip_payload_axis_tkeep = m_ip_payload_axis_tkeep_reg;
|
|
|
|
assign m_ip_payload_axis_tvalid = m_ip_payload_axis_tvalid_reg;
|
|
|
|
assign m_ip_payload_axis_tlast = m_ip_payload_axis_tlast_reg;
|
|
|
|
assign m_ip_payload_axis_tuser = m_ip_payload_axis_tuser_reg;
|
2014-10-28 01:00:52 -07:00
|
|
|
|
2015-11-09 23:50:34 -08:00
|
|
|
// enable ready input next cycle if output is ready or the temp reg will not be filled on the next cycle (output reg empty or no input)
|
2018-11-07 22:35:06 -08:00
|
|
|
assign m_ip_payload_axis_tready_int_early = m_ip_payload_axis_tready || (!temp_m_ip_payload_axis_tvalid_reg && (!m_ip_payload_axis_tvalid_reg || !m_ip_payload_axis_tvalid_int));
|
2015-11-09 23:50:34 -08:00
|
|
|
|
|
|
|
always @* begin
|
|
|
|
// transfer sink ready state to source
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tvalid_next = m_ip_payload_axis_tvalid_reg;
|
|
|
|
temp_m_ip_payload_axis_tvalid_next = temp_m_ip_payload_axis_tvalid_reg;
|
2015-11-09 23:50:34 -08:00
|
|
|
|
|
|
|
store_ip_payload_int_to_output = 1'b0;
|
|
|
|
store_ip_payload_int_to_temp = 1'b0;
|
2018-11-07 22:35:06 -08:00
|
|
|
store_ip_payload_axis_temp_to_output = 1'b0;
|
2015-11-09 23:50:34 -08:00
|
|
|
|
2018-11-07 22:35:06 -08:00
|
|
|
if (m_ip_payload_axis_tready_int_reg) begin
|
2015-11-09 23:50:34 -08:00
|
|
|
// input is ready
|
2018-11-07 22:35:06 -08:00
|
|
|
if (m_ip_payload_axis_tready || !m_ip_payload_axis_tvalid_reg) begin
|
2015-11-09 23:50:34 -08:00
|
|
|
// output is ready or currently not valid, transfer data to output
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tvalid_next = m_ip_payload_axis_tvalid_int;
|
2015-11-09 23:50:34 -08:00
|
|
|
store_ip_payload_int_to_output = 1'b1;
|
|
|
|
end else begin
|
|
|
|
// output is not ready, store input in temp
|
2018-11-07 22:35:06 -08:00
|
|
|
temp_m_ip_payload_axis_tvalid_next = m_ip_payload_axis_tvalid_int;
|
2015-11-09 23:50:34 -08:00
|
|
|
store_ip_payload_int_to_temp = 1'b1;
|
|
|
|
end
|
2018-11-07 22:35:06 -08:00
|
|
|
end else if (m_ip_payload_axis_tready) begin
|
2015-11-09 23:50:34 -08:00
|
|
|
// input is not ready, but output is ready
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tvalid_next = temp_m_ip_payload_axis_tvalid_reg;
|
|
|
|
temp_m_ip_payload_axis_tvalid_next = 1'b0;
|
|
|
|
store_ip_payload_axis_temp_to_output = 1'b1;
|
2015-11-09 23:50:34 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-09 22:36:58 -07:00
|
|
|
always @(posedge clk) begin
|
2022-05-15 17:39:44 -07:00
|
|
|
m_ip_payload_axis_tvalid_reg <= m_ip_payload_axis_tvalid_next;
|
|
|
|
m_ip_payload_axis_tready_int_reg <= m_ip_payload_axis_tready_int_early;
|
|
|
|
temp_m_ip_payload_axis_tvalid_reg <= temp_m_ip_payload_axis_tvalid_next;
|
2015-11-09 23:50:34 -08:00
|
|
|
|
|
|
|
// datapath
|
|
|
|
if (store_ip_payload_int_to_output) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
m_ip_payload_axis_tdata_reg <= m_ip_payload_axis_tdata_int;
|
|
|
|
m_ip_payload_axis_tkeep_reg <= m_ip_payload_axis_tkeep_int;
|
|
|
|
m_ip_payload_axis_tlast_reg <= m_ip_payload_axis_tlast_int;
|
|
|
|
m_ip_payload_axis_tuser_reg <= m_ip_payload_axis_tuser_int;
|
|
|
|
end else if (store_ip_payload_axis_temp_to_output) begin
|
|
|
|
m_ip_payload_axis_tdata_reg <= temp_m_ip_payload_axis_tdata_reg;
|
|
|
|
m_ip_payload_axis_tkeep_reg <= temp_m_ip_payload_axis_tkeep_reg;
|
|
|
|
m_ip_payload_axis_tlast_reg <= temp_m_ip_payload_axis_tlast_reg;
|
|
|
|
m_ip_payload_axis_tuser_reg <= temp_m_ip_payload_axis_tuser_reg;
|
2015-11-09 23:50:34 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
if (store_ip_payload_int_to_temp) begin
|
2018-11-07 22:35:06 -08:00
|
|
|
temp_m_ip_payload_axis_tdata_reg <= m_ip_payload_axis_tdata_int;
|
|
|
|
temp_m_ip_payload_axis_tkeep_reg <= m_ip_payload_axis_tkeep_int;
|
|
|
|
temp_m_ip_payload_axis_tlast_reg <= m_ip_payload_axis_tlast_int;
|
|
|
|
temp_m_ip_payload_axis_tuser_reg <= m_ip_payload_axis_tuser_int;
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
2022-05-15 17:39:44 -07:00
|
|
|
|
|
|
|
if (rst) begin
|
|
|
|
m_ip_payload_axis_tvalid_reg <= 1'b0;
|
|
|
|
m_ip_payload_axis_tready_int_reg <= 1'b0;
|
|
|
|
temp_m_ip_payload_axis_tvalid_reg <= 1'b0;
|
|
|
|
end
|
2014-09-25 00:40:48 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|
2021-10-20 17:29:12 -07:00
|
|
|
|
|
|
|
`resetall
|