mirror of
https://github.com/corundum/corundum.git
synced 2025-01-16 08:12:53 +08:00
491 lines
18 KiB
Verilog
491 lines
18 KiB
Verilog
/*
|
|
|
|
Copyright (c) 2014 Alex Forencich
|
|
|
|
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
|
|
|
|
`timescale 1ns / 1ps
|
|
|
|
/*
|
|
* IP ethernet frame transmitter (IP frame in, Ethernet frame out)
|
|
*/
|
|
module ip_eth_tx
|
|
(
|
|
input wire clk,
|
|
input wire rst,
|
|
|
|
/*
|
|
* IP frame input
|
|
*/
|
|
input wire input_ip_hdr_valid,
|
|
output wire input_ip_hdr_ready,
|
|
input wire [47:0] input_eth_dest_mac,
|
|
input wire [47:0] input_eth_src_mac,
|
|
input wire [15:0] input_eth_type,
|
|
input wire [5:0] input_ip_dscp,
|
|
input wire [1:0] input_ip_ecn,
|
|
input wire [15:0] input_ip_length,
|
|
input wire [15:0] input_ip_identification,
|
|
input wire [2:0] input_ip_flags,
|
|
input wire [12:0] input_ip_fragment_offset,
|
|
input wire [7:0] input_ip_ttl,
|
|
input wire [7:0] input_ip_protocol,
|
|
input wire [31:0] input_ip_source_ip,
|
|
input wire [31:0] input_ip_dest_ip,
|
|
input wire [7:0] input_ip_payload_tdata,
|
|
input wire input_ip_payload_tvalid,
|
|
output wire input_ip_payload_tready,
|
|
input wire input_ip_payload_tlast,
|
|
input wire input_ip_payload_tuser,
|
|
|
|
/*
|
|
* Ethernet frame output
|
|
*/
|
|
output wire output_eth_hdr_valid,
|
|
input wire output_eth_hdr_ready,
|
|
output wire [47:0] output_eth_dest_mac,
|
|
output wire [47:0] output_eth_src_mac,
|
|
output wire [15:0] output_eth_type,
|
|
output wire [7:0] output_eth_payload_tdata,
|
|
output wire output_eth_payload_tvalid,
|
|
input wire output_eth_payload_tready,
|
|
output wire output_eth_payload_tlast,
|
|
output wire output_eth_payload_tuser,
|
|
|
|
/*
|
|
* Status signals
|
|
*/
|
|
output wire busy,
|
|
output wire error_payload_early_termination
|
|
);
|
|
|
|
/*
|
|
|
|
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
|
|
|
|
This module receives an IP frame with header fields in parallel along with the
|
|
payload in an AXI stream, combines the header with the payload, passes through
|
|
the Ethernet headers, and transmits the complete Ethernet payload on an AXI
|
|
interface.
|
|
|
|
*/
|
|
|
|
localparam [2:0]
|
|
STATE_IDLE = 3'd0,
|
|
STATE_WRITE_HEADER = 3'd1,
|
|
STATE_WRITE_PAYLOAD = 3'd2,
|
|
STATE_WRITE_PAYLOAD_LAST = 3'd3,
|
|
STATE_WAIT_LAST = 3'd4;
|
|
|
|
reg [2:0] state_reg = STATE_IDLE, state_next;
|
|
|
|
// datapath control signals
|
|
reg store_ip_hdr;
|
|
reg store_last_word;
|
|
|
|
reg [15:0] frame_ptr_reg = 0, frame_ptr_next;
|
|
|
|
reg [15:0] hdr_sum_reg = 0, hdr_sum_next;
|
|
|
|
reg [7:0] last_word_data_reg = 0;
|
|
|
|
reg [5:0] ip_dscp_reg = 0;
|
|
reg [1:0] ip_ecn_reg = 0;
|
|
reg [15:0] ip_length_reg = 0;
|
|
reg [15:0] ip_identification_reg = 0;
|
|
reg [2:0] ip_flags_reg = 0;
|
|
reg [12:0] ip_fragment_offset_reg = 0;
|
|
reg [7:0] ip_ttl_reg = 0;
|
|
reg [7:0] ip_protocol_reg = 0;
|
|
reg [31:0] ip_source_ip_reg = 0;
|
|
reg [31:0] ip_dest_ip_reg = 0;
|
|
|
|
reg input_ip_hdr_ready_reg = 0, input_ip_hdr_ready_next;
|
|
reg input_ip_payload_tready_reg = 0, input_ip_payload_tready_next;
|
|
|
|
reg output_eth_hdr_valid_reg = 0, output_eth_hdr_valid_next;
|
|
reg [47:0] output_eth_dest_mac_reg = 0;
|
|
reg [47:0] output_eth_src_mac_reg = 0;
|
|
reg [15:0] output_eth_type_reg = 0;
|
|
|
|
reg busy_reg = 0;
|
|
reg error_payload_early_termination_reg = 0, error_payload_early_termination_next;
|
|
|
|
// internal datapath
|
|
reg [7:0] output_eth_payload_tdata_int;
|
|
reg output_eth_payload_tvalid_int;
|
|
reg output_eth_payload_tready_int = 0;
|
|
reg output_eth_payload_tlast_int;
|
|
reg output_eth_payload_tuser_int;
|
|
wire output_eth_payload_tready_int_early;
|
|
|
|
assign input_ip_hdr_ready = input_ip_hdr_ready_reg;
|
|
assign input_ip_payload_tready = input_ip_payload_tready_reg;
|
|
|
|
assign output_eth_hdr_valid = output_eth_hdr_valid_reg;
|
|
assign output_eth_dest_mac = output_eth_dest_mac_reg;
|
|
assign output_eth_src_mac = output_eth_src_mac_reg;
|
|
assign output_eth_type = output_eth_type_reg;
|
|
|
|
assign busy = busy_reg;
|
|
assign error_payload_early_termination = error_payload_early_termination_reg;
|
|
|
|
function [15:0] add1c16b;
|
|
input [15:0] a, b;
|
|
reg [16:0] t;
|
|
begin
|
|
t = a+b;
|
|
add1c16b = t[15:0] + t[16];
|
|
end
|
|
endfunction
|
|
|
|
always @* begin
|
|
state_next = STATE_IDLE;
|
|
|
|
input_ip_hdr_ready_next = 0;
|
|
input_ip_payload_tready_next = 0;
|
|
|
|
store_ip_hdr = 0;
|
|
|
|
store_last_word = 0;
|
|
|
|
frame_ptr_next = frame_ptr_reg;
|
|
|
|
hdr_sum_next = hdr_sum_reg;
|
|
|
|
output_eth_hdr_valid_next = output_eth_hdr_valid_reg & ~output_eth_hdr_ready;
|
|
|
|
error_payload_early_termination_next = 0;
|
|
|
|
output_eth_payload_tdata_int = 0;
|
|
output_eth_payload_tvalid_int = 0;
|
|
output_eth_payload_tlast_int = 0;
|
|
output_eth_payload_tuser_int = 0;
|
|
|
|
case (state_reg)
|
|
STATE_IDLE: begin
|
|
// idle state - wait for data
|
|
frame_ptr_next = 0;
|
|
input_ip_hdr_ready_next = ~output_eth_hdr_valid_reg;
|
|
|
|
if (input_ip_hdr_ready & input_ip_hdr_valid) begin
|
|
store_ip_hdr = 1;
|
|
input_ip_hdr_ready_next = 0;
|
|
output_eth_hdr_valid_next = 1;
|
|
if (output_eth_payload_tready_int) begin
|
|
output_eth_payload_tvalid_int = 1;
|
|
output_eth_payload_tdata_int = {4'd4, 4'd5}; // ip_version, ip_ihl
|
|
frame_ptr_next = 1;
|
|
end
|
|
state_next = STATE_WRITE_HEADER;
|
|
end else begin
|
|
state_next = STATE_IDLE;
|
|
end
|
|
end
|
|
STATE_WRITE_HEADER: begin
|
|
// write header
|
|
if (output_eth_payload_tready_int) begin
|
|
frame_ptr_next = frame_ptr_reg+1;
|
|
output_eth_payload_tvalid_int = 1;
|
|
state_next = STATE_WRITE_HEADER;
|
|
case (frame_ptr_reg)
|
|
8'h00: begin
|
|
output_eth_payload_tdata_int = {4'd4, 4'd5}; // ip_version, ip_ihl
|
|
end
|
|
8'h01: begin
|
|
output_eth_payload_tdata_int = {ip_dscp_reg, ip_ecn_reg};
|
|
hdr_sum_next = {4'd4, 4'd5, ip_dscp_reg, ip_ecn_reg};
|
|
end
|
|
8'h02: begin
|
|
output_eth_payload_tdata_int = ip_length_reg[15: 8];
|
|
hdr_sum_next = add1c16b(hdr_sum_reg, ip_length_reg);
|
|
end
|
|
8'h03: begin
|
|
output_eth_payload_tdata_int = ip_length_reg[ 7: 0];
|
|
hdr_sum_next = add1c16b(hdr_sum_reg, ip_identification_reg);
|
|
end
|
|
8'h04: begin
|
|
output_eth_payload_tdata_int = ip_identification_reg[15: 8];
|
|
hdr_sum_next = add1c16b(hdr_sum_reg, {ip_flags_reg, ip_fragment_offset_reg});
|
|
end
|
|
8'h05: begin
|
|
output_eth_payload_tdata_int = ip_identification_reg[ 7: 0];
|
|
hdr_sum_next = add1c16b(hdr_sum_reg, {ip_ttl_reg, ip_protocol_reg});
|
|
end
|
|
8'h06: begin
|
|
output_eth_payload_tdata_int = {ip_flags_reg, ip_fragment_offset_reg[12:8]};
|
|
hdr_sum_next = add1c16b(hdr_sum_reg, ip_source_ip_reg[31:16]);
|
|
end
|
|
8'h07: begin
|
|
output_eth_payload_tdata_int = ip_fragment_offset_reg[ 7: 0];
|
|
hdr_sum_next = add1c16b(hdr_sum_reg, ip_source_ip_reg[15:0]);
|
|
end
|
|
8'h08: begin
|
|
output_eth_payload_tdata_int = ip_ttl_reg;
|
|
hdr_sum_next = add1c16b(hdr_sum_reg, ip_dest_ip_reg[31:16]);
|
|
end
|
|
8'h09: begin
|
|
output_eth_payload_tdata_int = ip_protocol_reg;
|
|
hdr_sum_next = add1c16b(hdr_sum_reg, ip_dest_ip_reg[15:0]);
|
|
end
|
|
8'h0A: output_eth_payload_tdata_int = ~hdr_sum_reg[15: 8];
|
|
8'h0B: output_eth_payload_tdata_int = ~hdr_sum_reg[ 7: 0];
|
|
8'h0C: output_eth_payload_tdata_int = ip_source_ip_reg[31:24];
|
|
8'h0D: output_eth_payload_tdata_int = ip_source_ip_reg[23:16];
|
|
8'h0E: output_eth_payload_tdata_int = ip_source_ip_reg[15: 8];
|
|
8'h0F: output_eth_payload_tdata_int = ip_source_ip_reg[ 7: 0];
|
|
8'h10: output_eth_payload_tdata_int = ip_dest_ip_reg[31:24];
|
|
8'h11: output_eth_payload_tdata_int = ip_dest_ip_reg[23:16];
|
|
8'h12: output_eth_payload_tdata_int = ip_dest_ip_reg[15: 8];
|
|
8'h13: begin
|
|
output_eth_payload_tdata_int = ip_dest_ip_reg[ 7: 0];
|
|
input_ip_payload_tready_next = output_eth_payload_tready_int_early;
|
|
state_next = STATE_WRITE_PAYLOAD;
|
|
end
|
|
endcase
|
|
end else begin
|
|
state_next = STATE_WRITE_HEADER;
|
|
end
|
|
end
|
|
STATE_WRITE_PAYLOAD: begin
|
|
// write payload
|
|
input_ip_payload_tready_next = output_eth_payload_tready_int_early;
|
|
|
|
output_eth_payload_tdata_int = input_ip_payload_tdata;
|
|
output_eth_payload_tvalid_int = input_ip_payload_tvalid;
|
|
output_eth_payload_tlast_int = input_ip_payload_tlast;
|
|
output_eth_payload_tuser_int = input_ip_payload_tuser;
|
|
|
|
if (input_ip_payload_tready & input_ip_payload_tvalid) begin
|
|
// word transfer through
|
|
frame_ptr_next = frame_ptr_reg+1;
|
|
if (input_ip_payload_tlast) begin
|
|
if (frame_ptr_next != ip_length_reg) begin
|
|
// end of frame, but length does not match
|
|
output_eth_payload_tuser_int = 1;
|
|
error_payload_early_termination_next = 1;
|
|
end
|
|
input_ip_hdr_ready_next = ~output_eth_hdr_valid_reg;
|
|
input_ip_payload_tready_next = 0;
|
|
state_next = STATE_IDLE;
|
|
end else begin
|
|
if (frame_ptr_next == ip_length_reg) begin
|
|
store_last_word = 1;
|
|
output_eth_payload_tvalid_int = 0;
|
|
state_next = STATE_WRITE_PAYLOAD_LAST;
|
|
end else begin
|
|
state_next = STATE_WRITE_PAYLOAD;
|
|
end
|
|
end
|
|
end else begin
|
|
state_next = STATE_WRITE_PAYLOAD;
|
|
end
|
|
end
|
|
STATE_WRITE_PAYLOAD_LAST: begin
|
|
// read and discard until end of frame
|
|
input_ip_payload_tready_next = output_eth_payload_tready_int_early;
|
|
|
|
output_eth_payload_tdata_int = last_word_data_reg;
|
|
output_eth_payload_tvalid_int = input_ip_payload_tvalid & input_ip_payload_tlast;
|
|
output_eth_payload_tlast_int = input_ip_payload_tlast;
|
|
output_eth_payload_tuser_int = input_ip_payload_tuser;
|
|
|
|
if (input_ip_payload_tready & input_ip_payload_tvalid) begin
|
|
if (input_ip_payload_tlast) begin
|
|
input_ip_hdr_ready_next = ~output_eth_hdr_valid_reg;
|
|
input_ip_payload_tready_next = 0;
|
|
state_next = STATE_IDLE;
|
|
end else begin
|
|
state_next = STATE_WRITE_PAYLOAD_LAST;
|
|
end
|
|
end else begin
|
|
state_next = STATE_WRITE_PAYLOAD_LAST;
|
|
end
|
|
end
|
|
STATE_WAIT_LAST: begin
|
|
// read and discard until end of frame
|
|
input_ip_payload_tready_next = 1;
|
|
|
|
if (input_ip_payload_tready & input_ip_payload_tvalid) begin
|
|
if (input_ip_payload_tlast) begin
|
|
input_ip_hdr_ready_next = ~output_eth_hdr_valid_reg;
|
|
input_ip_payload_tready_next = 0;
|
|
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
|
|
|
|
always @(posedge clk) begin
|
|
if (rst) begin
|
|
state_reg <= STATE_IDLE;
|
|
frame_ptr_reg <= 0;
|
|
hdr_sum_reg <= 0;
|
|
last_word_data_reg <= 0;
|
|
input_ip_hdr_ready_reg <= 0;
|
|
input_ip_payload_tready_reg <= 0;
|
|
ip_dscp_reg <= 0;
|
|
ip_ecn_reg <= 0;
|
|
ip_length_reg <= 0;
|
|
ip_identification_reg <= 0;
|
|
ip_flags_reg <= 0;
|
|
ip_fragment_offset_reg <= 0;
|
|
ip_ttl_reg <= 0;
|
|
ip_protocol_reg <= 0;
|
|
ip_source_ip_reg <= 0;
|
|
ip_dest_ip_reg <= 0;
|
|
output_eth_hdr_valid_reg <= 0;
|
|
output_eth_dest_mac_reg <= 0;
|
|
output_eth_src_mac_reg <= 0;
|
|
output_eth_type_reg <= 0;
|
|
busy_reg <= 0;
|
|
error_payload_early_termination_reg <= 0;
|
|
end else begin
|
|
state_reg <= state_next;
|
|
|
|
frame_ptr_reg <= frame_ptr_next;
|
|
|
|
hdr_sum_reg <= hdr_sum_next;
|
|
|
|
input_ip_hdr_ready_reg <= input_ip_hdr_ready_next;
|
|
input_ip_payload_tready_reg <= input_ip_payload_tready_next;
|
|
|
|
output_eth_hdr_valid_reg <= output_eth_hdr_valid_next;
|
|
|
|
busy_reg <= state_next != STATE_IDLE;
|
|
|
|
error_payload_early_termination_reg <= error_payload_early_termination_next;
|
|
|
|
// datapath
|
|
if (store_ip_hdr) begin
|
|
output_eth_dest_mac_reg <= input_eth_dest_mac;
|
|
output_eth_src_mac_reg <= input_eth_src_mac;
|
|
output_eth_type_reg <= input_eth_type;
|
|
ip_dscp_reg <= input_ip_dscp;
|
|
ip_ecn_reg <= input_ip_ecn;
|
|
ip_length_reg <= input_ip_length;
|
|
ip_identification_reg <= input_ip_identification;
|
|
ip_flags_reg <= input_ip_flags;
|
|
ip_fragment_offset_reg <= input_ip_fragment_offset;
|
|
ip_ttl_reg <= input_ip_ttl;
|
|
ip_protocol_reg <= input_ip_protocol;
|
|
ip_source_ip_reg <= input_ip_source_ip;
|
|
ip_dest_ip_reg <= input_ip_dest_ip;
|
|
end
|
|
|
|
if (store_last_word) begin
|
|
last_word_data_reg <= output_eth_payload_tdata_int;
|
|
end
|
|
end
|
|
end
|
|
|
|
// output datapath logic
|
|
reg [7:0] output_eth_payload_tdata_reg = 0;
|
|
reg output_eth_payload_tvalid_reg = 0;
|
|
reg output_eth_payload_tlast_reg = 0;
|
|
reg output_eth_payload_tuser_reg = 0;
|
|
|
|
reg [7:0] temp_axis_tdata_reg = 0;
|
|
reg temp_axis_tvalid_reg = 0;
|
|
reg temp_axis_tlast_reg = 0;
|
|
reg temp_axis_tuser_reg = 0;
|
|
|
|
assign output_eth_payload_tdata = output_eth_payload_tdata_reg;
|
|
assign output_eth_payload_tvalid = output_eth_payload_tvalid_reg;
|
|
assign output_eth_payload_tlast = output_eth_payload_tlast_reg;
|
|
assign output_eth_payload_tuser = output_eth_payload_tuser_reg;
|
|
|
|
// enable ready input next cycle if output is ready or if there is space in both output registers or if there is space in the temp register that will not be filled next cycle
|
|
assign output_eth_payload_tready_int_early = output_eth_payload_tready | (~temp_axis_tvalid_reg & ~output_eth_payload_tvalid_reg) | (~temp_axis_tvalid_reg & ~output_eth_payload_tvalid_int);
|
|
|
|
always @(posedge clk) begin
|
|
if (rst) begin
|
|
output_eth_payload_tdata_reg <= 0;
|
|
output_eth_payload_tvalid_reg <= 0;
|
|
output_eth_payload_tlast_reg <= 0;
|
|
output_eth_payload_tuser_reg <= 0;
|
|
output_eth_payload_tready_int <= 0;
|
|
temp_axis_tdata_reg <= 0;
|
|
temp_axis_tvalid_reg <= 0;
|
|
temp_axis_tlast_reg <= 0;
|
|
temp_axis_tuser_reg <= 0;
|
|
end else begin
|
|
// transfer sink ready state to source
|
|
output_eth_payload_tready_int <= output_eth_payload_tready_int_early;
|
|
|
|
if (output_eth_payload_tready_int) begin
|
|
// input is ready
|
|
if (output_eth_payload_tready | ~output_eth_payload_tvalid_reg) begin
|
|
// output is ready or currently not valid, transfer data to output
|
|
output_eth_payload_tdata_reg <= output_eth_payload_tdata_int;
|
|
output_eth_payload_tvalid_reg <= output_eth_payload_tvalid_int;
|
|
output_eth_payload_tlast_reg <= output_eth_payload_tlast_int;
|
|
output_eth_payload_tuser_reg <= output_eth_payload_tuser_int;
|
|
end else begin
|
|
// output is not ready and currently valid, store input in temp
|
|
temp_axis_tdata_reg <= output_eth_payload_tdata_int;
|
|
temp_axis_tvalid_reg <= output_eth_payload_tvalid_int;
|
|
temp_axis_tlast_reg <= output_eth_payload_tlast_int;
|
|
temp_axis_tuser_reg <= output_eth_payload_tuser_int;
|
|
end
|
|
end else if (output_eth_payload_tready) begin
|
|
// input is not ready, but output is ready
|
|
output_eth_payload_tdata_reg <= temp_axis_tdata_reg;
|
|
output_eth_payload_tvalid_reg <= temp_axis_tvalid_reg;
|
|
output_eth_payload_tlast_reg <= temp_axis_tlast_reg;
|
|
output_eth_payload_tuser_reg <= temp_axis_tuser_reg;
|
|
temp_axis_tdata_reg <= 0;
|
|
temp_axis_tvalid_reg <= 0;
|
|
temp_axis_tlast_reg <= 0;
|
|
temp_axis_tuser_reg <= 0;
|
|
end
|
|
end
|
|
end
|
|
|
|
endmodule
|