mirror of
https://github.com/corundum/corundum.git
synced 2025-01-16 08:12:53 +08:00
414 lines
15 KiB
Verilog
414 lines
15 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 1 ns / 1 ps
|
|
|
|
module test_ip_mux_4;
|
|
|
|
// Inputs
|
|
reg clk = 0;
|
|
reg rst = 0;
|
|
reg [7:0] current_test = 0;
|
|
|
|
reg input_0_ip_hdr_valid = 0;
|
|
reg [47:0] input_0_eth_dest_mac = 0;
|
|
reg [47:0] input_0_eth_src_mac = 0;
|
|
reg [15:0] input_0_eth_type = 0;
|
|
reg [3:0] input_0_ip_version = 0;
|
|
reg [3:0] input_0_ip_ihl = 0;
|
|
reg [5:0] input_0_ip_dscp = 0;
|
|
reg [1:0] input_0_ip_ecn = 0;
|
|
reg [15:0] input_0_ip_length = 0;
|
|
reg [15:0] input_0_ip_identification = 0;
|
|
reg [2:0] input_0_ip_flags = 0;
|
|
reg [12:0] input_0_ip_fragment_offset = 0;
|
|
reg [7:0] input_0_ip_ttl = 0;
|
|
reg [7:0] input_0_ip_protocol = 0;
|
|
reg [15:0] input_0_ip_header_checksum = 0;
|
|
reg [31:0] input_0_ip_source_ip = 0;
|
|
reg [31:0] input_0_ip_dest_ip = 0;
|
|
reg [7:0] input_0_ip_payload_tdata = 0;
|
|
reg input_0_ip_payload_tvalid = 0;
|
|
reg input_0_ip_payload_tlast = 0;
|
|
reg input_0_ip_payload_tuser = 0;
|
|
reg input_1_ip_hdr_valid = 0;
|
|
reg [47:0] input_1_eth_dest_mac = 0;
|
|
reg [47:0] input_1_eth_src_mac = 0;
|
|
reg [15:0] input_1_eth_type = 0;
|
|
reg [3:0] input_1_ip_version = 0;
|
|
reg [3:0] input_1_ip_ihl = 0;
|
|
reg [5:0] input_1_ip_dscp = 0;
|
|
reg [1:0] input_1_ip_ecn = 0;
|
|
reg [15:0] input_1_ip_length = 0;
|
|
reg [15:0] input_1_ip_identification = 0;
|
|
reg [2:0] input_1_ip_flags = 0;
|
|
reg [12:0] input_1_ip_fragment_offset = 0;
|
|
reg [7:0] input_1_ip_ttl = 0;
|
|
reg [7:0] input_1_ip_protocol = 0;
|
|
reg [15:0] input_1_ip_header_checksum = 0;
|
|
reg [31:0] input_1_ip_source_ip = 0;
|
|
reg [31:0] input_1_ip_dest_ip = 0;
|
|
reg [7:0] input_1_ip_payload_tdata = 0;
|
|
reg input_1_ip_payload_tvalid = 0;
|
|
reg input_1_ip_payload_tlast = 0;
|
|
reg input_1_ip_payload_tuser = 0;
|
|
reg input_2_ip_hdr_valid = 0;
|
|
reg [47:0] input_2_eth_dest_mac = 0;
|
|
reg [47:0] input_2_eth_src_mac = 0;
|
|
reg [15:0] input_2_eth_type = 0;
|
|
reg [3:0] input_2_ip_version = 0;
|
|
reg [3:0] input_2_ip_ihl = 0;
|
|
reg [5:0] input_2_ip_dscp = 0;
|
|
reg [1:0] input_2_ip_ecn = 0;
|
|
reg [15:0] input_2_ip_length = 0;
|
|
reg [15:0] input_2_ip_identification = 0;
|
|
reg [2:0] input_2_ip_flags = 0;
|
|
reg [12:0] input_2_ip_fragment_offset = 0;
|
|
reg [7:0] input_2_ip_ttl = 0;
|
|
reg [7:0] input_2_ip_protocol = 0;
|
|
reg [15:0] input_2_ip_header_checksum = 0;
|
|
reg [31:0] input_2_ip_source_ip = 0;
|
|
reg [31:0] input_2_ip_dest_ip = 0;
|
|
reg [7:0] input_2_ip_payload_tdata = 0;
|
|
reg input_2_ip_payload_tvalid = 0;
|
|
reg input_2_ip_payload_tlast = 0;
|
|
reg input_2_ip_payload_tuser = 0;
|
|
reg input_3_ip_hdr_valid = 0;
|
|
reg [47:0] input_3_eth_dest_mac = 0;
|
|
reg [47:0] input_3_eth_src_mac = 0;
|
|
reg [15:0] input_3_eth_type = 0;
|
|
reg [3:0] input_3_ip_version = 0;
|
|
reg [3:0] input_3_ip_ihl = 0;
|
|
reg [5:0] input_3_ip_dscp = 0;
|
|
reg [1:0] input_3_ip_ecn = 0;
|
|
reg [15:0] input_3_ip_length = 0;
|
|
reg [15:0] input_3_ip_identification = 0;
|
|
reg [2:0] input_3_ip_flags = 0;
|
|
reg [12:0] input_3_ip_fragment_offset = 0;
|
|
reg [7:0] input_3_ip_ttl = 0;
|
|
reg [7:0] input_3_ip_protocol = 0;
|
|
reg [15:0] input_3_ip_header_checksum = 0;
|
|
reg [31:0] input_3_ip_source_ip = 0;
|
|
reg [31:0] input_3_ip_dest_ip = 0;
|
|
reg [7:0] input_3_ip_payload_tdata = 0;
|
|
reg input_3_ip_payload_tvalid = 0;
|
|
reg input_3_ip_payload_tlast = 0;
|
|
reg input_3_ip_payload_tuser = 0;
|
|
|
|
reg output_ip_hdr_ready = 0;
|
|
reg output_ip_payload_tready = 0;
|
|
|
|
reg enable = 0;
|
|
reg [1:0] select = 0;
|
|
|
|
// Outputs
|
|
wire input_0_ip_payload_tready;
|
|
wire input_0_ip_hdr_ready;
|
|
wire input_1_ip_payload_tready;
|
|
wire input_1_ip_hdr_ready;
|
|
wire input_2_ip_payload_tready;
|
|
wire input_2_ip_hdr_ready;
|
|
wire input_3_ip_payload_tready;
|
|
wire input_3_ip_hdr_ready;
|
|
|
|
wire output_ip_hdr_valid;
|
|
wire [47:0] output_eth_dest_mac;
|
|
wire [47:0] output_eth_src_mac;
|
|
wire [15:0] output_eth_type;
|
|
wire [3:0] output_ip_version;
|
|
wire [3:0] output_ip_ihl;
|
|
wire [5:0] output_ip_dscp;
|
|
wire [1:0] output_ip_ecn;
|
|
wire [15:0] output_ip_length;
|
|
wire [15:0] output_ip_identification;
|
|
wire [2:0] output_ip_flags;
|
|
wire [12:0] output_ip_fragment_offset;
|
|
wire [7:0] output_ip_ttl;
|
|
wire [7:0] output_ip_protocol;
|
|
wire [15:0] output_ip_header_checksum;
|
|
wire [31:0] output_ip_source_ip;
|
|
wire [31:0] output_ip_dest_ip;
|
|
wire [7:0] output_ip_payload_tdata;
|
|
wire output_ip_payload_tvalid;
|
|
wire output_ip_payload_tlast;
|
|
wire output_ip_payload_tuser;
|
|
|
|
initial begin
|
|
// myhdl integration
|
|
$from_myhdl(clk,
|
|
rst,
|
|
current_test,
|
|
input_0_ip_hdr_valid,
|
|
input_0_eth_dest_mac,
|
|
input_0_eth_src_mac,
|
|
input_0_eth_type,
|
|
input_0_ip_version,
|
|
input_0_ip_ihl,
|
|
input_0_ip_dscp,
|
|
input_0_ip_ecn,
|
|
input_0_ip_length,
|
|
input_0_ip_identification,
|
|
input_0_ip_flags,
|
|
input_0_ip_fragment_offset,
|
|
input_0_ip_ttl,
|
|
input_0_ip_protocol,
|
|
input_0_ip_header_checksum,
|
|
input_0_ip_source_ip,
|
|
input_0_ip_dest_ip,
|
|
input_0_ip_payload_tdata,
|
|
input_0_ip_payload_tvalid,
|
|
input_0_ip_payload_tlast,
|
|
input_0_ip_payload_tuser,
|
|
input_1_ip_hdr_valid,
|
|
input_1_eth_dest_mac,
|
|
input_1_eth_src_mac,
|
|
input_1_eth_type,
|
|
input_1_ip_version,
|
|
input_1_ip_ihl,
|
|
input_1_ip_dscp,
|
|
input_1_ip_ecn,
|
|
input_1_ip_length,
|
|
input_1_ip_identification,
|
|
input_1_ip_flags,
|
|
input_1_ip_fragment_offset,
|
|
input_1_ip_ttl,
|
|
input_1_ip_protocol,
|
|
input_1_ip_header_checksum,
|
|
input_1_ip_source_ip,
|
|
input_1_ip_dest_ip,
|
|
input_1_ip_payload_tdata,
|
|
input_1_ip_payload_tvalid,
|
|
input_1_ip_payload_tlast,
|
|
input_1_ip_payload_tuser,
|
|
input_2_ip_hdr_valid,
|
|
input_2_eth_dest_mac,
|
|
input_2_eth_src_mac,
|
|
input_2_eth_type,
|
|
input_2_ip_version,
|
|
input_2_ip_ihl,
|
|
input_2_ip_dscp,
|
|
input_2_ip_ecn,
|
|
input_2_ip_length,
|
|
input_2_ip_identification,
|
|
input_2_ip_flags,
|
|
input_2_ip_fragment_offset,
|
|
input_2_ip_ttl,
|
|
input_2_ip_protocol,
|
|
input_2_ip_header_checksum,
|
|
input_2_ip_source_ip,
|
|
input_2_ip_dest_ip,
|
|
input_2_ip_payload_tdata,
|
|
input_2_ip_payload_tvalid,
|
|
input_2_ip_payload_tlast,
|
|
input_2_ip_payload_tuser,
|
|
input_3_ip_hdr_valid,
|
|
input_3_eth_dest_mac,
|
|
input_3_eth_src_mac,
|
|
input_3_eth_type,
|
|
input_3_ip_version,
|
|
input_3_ip_ihl,
|
|
input_3_ip_dscp,
|
|
input_3_ip_ecn,
|
|
input_3_ip_length,
|
|
input_3_ip_identification,
|
|
input_3_ip_flags,
|
|
input_3_ip_fragment_offset,
|
|
input_3_ip_ttl,
|
|
input_3_ip_protocol,
|
|
input_3_ip_header_checksum,
|
|
input_3_ip_source_ip,
|
|
input_3_ip_dest_ip,
|
|
input_3_ip_payload_tdata,
|
|
input_3_ip_payload_tvalid,
|
|
input_3_ip_payload_tlast,
|
|
input_3_ip_payload_tuser,
|
|
output_ip_hdr_ready,
|
|
output_ip_payload_tready,
|
|
enable,
|
|
select);
|
|
$to_myhdl(input_0_ip_hdr_ready,
|
|
input_0_ip_payload_tready,
|
|
input_1_ip_hdr_ready,
|
|
input_1_ip_payload_tready,
|
|
input_2_ip_hdr_ready,
|
|
input_2_ip_payload_tready,
|
|
input_3_ip_hdr_ready,
|
|
input_3_ip_payload_tready,
|
|
output_ip_hdr_valid,
|
|
output_eth_dest_mac,
|
|
output_eth_src_mac,
|
|
output_eth_type,
|
|
output_ip_version,
|
|
output_ip_ihl,
|
|
output_ip_dscp,
|
|
output_ip_ecn,
|
|
output_ip_length,
|
|
output_ip_identification,
|
|
output_ip_flags,
|
|
output_ip_fragment_offset,
|
|
output_ip_ttl,
|
|
output_ip_protocol,
|
|
output_ip_header_checksum,
|
|
output_ip_source_ip,
|
|
output_ip_dest_ip,
|
|
output_ip_payload_tdata,
|
|
output_ip_payload_tvalid,
|
|
output_ip_payload_tlast,
|
|
output_ip_payload_tuser);
|
|
|
|
// dump file
|
|
$dumpfile("test_ip_mux_4.lxt");
|
|
$dumpvars(0, test_ip_mux_4);
|
|
end
|
|
|
|
ip_mux_4
|
|
UUT (
|
|
.clk(clk),
|
|
.rst(rst),
|
|
// IP frame inputs
|
|
.input_0_ip_hdr_valid(input_0_ip_hdr_valid),
|
|
.input_0_ip_hdr_ready(input_0_ip_hdr_ready),
|
|
.input_0_eth_dest_mac(input_0_eth_dest_mac),
|
|
.input_0_eth_src_mac(input_0_eth_src_mac),
|
|
.input_0_eth_type(input_0_eth_type),
|
|
.input_0_ip_version(input_0_ip_version),
|
|
.input_0_ip_ihl(input_0_ip_ihl),
|
|
.input_0_ip_dscp(input_0_ip_dscp),
|
|
.input_0_ip_ecn(input_0_ip_ecn),
|
|
.input_0_ip_length(input_0_ip_length),
|
|
.input_0_ip_identification(input_0_ip_identification),
|
|
.input_0_ip_flags(input_0_ip_flags),
|
|
.input_0_ip_fragment_offset(input_0_ip_fragment_offset),
|
|
.input_0_ip_ttl(input_0_ip_ttl),
|
|
.input_0_ip_protocol(input_0_ip_protocol),
|
|
.input_0_ip_header_checksum(input_0_ip_header_checksum),
|
|
.input_0_ip_source_ip(input_0_ip_source_ip),
|
|
.input_0_ip_dest_ip(input_0_ip_dest_ip),
|
|
.input_0_ip_payload_tdata(input_0_ip_payload_tdata),
|
|
.input_0_ip_payload_tvalid(input_0_ip_payload_tvalid),
|
|
.input_0_ip_payload_tready(input_0_ip_payload_tready),
|
|
.input_0_ip_payload_tlast(input_0_ip_payload_tlast),
|
|
.input_0_ip_payload_tuser(input_0_ip_payload_tuser),
|
|
.input_1_ip_hdr_valid(input_1_ip_hdr_valid),
|
|
.input_1_ip_hdr_ready(input_1_ip_hdr_ready),
|
|
.input_1_eth_dest_mac(input_1_eth_dest_mac),
|
|
.input_1_eth_src_mac(input_1_eth_src_mac),
|
|
.input_1_eth_type(input_1_eth_type),
|
|
.input_1_ip_version(input_1_ip_version),
|
|
.input_1_ip_ihl(input_1_ip_ihl),
|
|
.input_1_ip_dscp(input_1_ip_dscp),
|
|
.input_1_ip_ecn(input_1_ip_ecn),
|
|
.input_1_ip_length(input_1_ip_length),
|
|
.input_1_ip_identification(input_1_ip_identification),
|
|
.input_1_ip_flags(input_1_ip_flags),
|
|
.input_1_ip_fragment_offset(input_1_ip_fragment_offset),
|
|
.input_1_ip_ttl(input_1_ip_ttl),
|
|
.input_1_ip_protocol(input_1_ip_protocol),
|
|
.input_1_ip_header_checksum(input_1_ip_header_checksum),
|
|
.input_1_ip_source_ip(input_1_ip_source_ip),
|
|
.input_1_ip_dest_ip(input_1_ip_dest_ip),
|
|
.input_1_ip_payload_tdata(input_1_ip_payload_tdata),
|
|
.input_1_ip_payload_tvalid(input_1_ip_payload_tvalid),
|
|
.input_1_ip_payload_tready(input_1_ip_payload_tready),
|
|
.input_1_ip_payload_tlast(input_1_ip_payload_tlast),
|
|
.input_1_ip_payload_tuser(input_1_ip_payload_tuser),
|
|
.input_2_ip_hdr_valid(input_2_ip_hdr_valid),
|
|
.input_2_ip_hdr_ready(input_2_ip_hdr_ready),
|
|
.input_2_eth_dest_mac(input_2_eth_dest_mac),
|
|
.input_2_eth_src_mac(input_2_eth_src_mac),
|
|
.input_2_eth_type(input_2_eth_type),
|
|
.input_2_ip_version(input_2_ip_version),
|
|
.input_2_ip_ihl(input_2_ip_ihl),
|
|
.input_2_ip_dscp(input_2_ip_dscp),
|
|
.input_2_ip_ecn(input_2_ip_ecn),
|
|
.input_2_ip_length(input_2_ip_length),
|
|
.input_2_ip_identification(input_2_ip_identification),
|
|
.input_2_ip_flags(input_2_ip_flags),
|
|
.input_2_ip_fragment_offset(input_2_ip_fragment_offset),
|
|
.input_2_ip_ttl(input_2_ip_ttl),
|
|
.input_2_ip_protocol(input_2_ip_protocol),
|
|
.input_2_ip_header_checksum(input_2_ip_header_checksum),
|
|
.input_2_ip_source_ip(input_2_ip_source_ip),
|
|
.input_2_ip_dest_ip(input_2_ip_dest_ip),
|
|
.input_2_ip_payload_tdata(input_2_ip_payload_tdata),
|
|
.input_2_ip_payload_tvalid(input_2_ip_payload_tvalid),
|
|
.input_2_ip_payload_tready(input_2_ip_payload_tready),
|
|
.input_2_ip_payload_tlast(input_2_ip_payload_tlast),
|
|
.input_2_ip_payload_tuser(input_2_ip_payload_tuser),
|
|
.input_3_ip_hdr_valid(input_3_ip_hdr_valid),
|
|
.input_3_ip_hdr_ready(input_3_ip_hdr_ready),
|
|
.input_3_eth_dest_mac(input_3_eth_dest_mac),
|
|
.input_3_eth_src_mac(input_3_eth_src_mac),
|
|
.input_3_eth_type(input_3_eth_type),
|
|
.input_3_ip_version(input_3_ip_version),
|
|
.input_3_ip_ihl(input_3_ip_ihl),
|
|
.input_3_ip_dscp(input_3_ip_dscp),
|
|
.input_3_ip_ecn(input_3_ip_ecn),
|
|
.input_3_ip_length(input_3_ip_length),
|
|
.input_3_ip_identification(input_3_ip_identification),
|
|
.input_3_ip_flags(input_3_ip_flags),
|
|
.input_3_ip_fragment_offset(input_3_ip_fragment_offset),
|
|
.input_3_ip_ttl(input_3_ip_ttl),
|
|
.input_3_ip_protocol(input_3_ip_protocol),
|
|
.input_3_ip_header_checksum(input_3_ip_header_checksum),
|
|
.input_3_ip_source_ip(input_3_ip_source_ip),
|
|
.input_3_ip_dest_ip(input_3_ip_dest_ip),
|
|
.input_3_ip_payload_tdata(input_3_ip_payload_tdata),
|
|
.input_3_ip_payload_tvalid(input_3_ip_payload_tvalid),
|
|
.input_3_ip_payload_tready(input_3_ip_payload_tready),
|
|
.input_3_ip_payload_tlast(input_3_ip_payload_tlast),
|
|
.input_3_ip_payload_tuser(input_3_ip_payload_tuser),
|
|
// IP frame output
|
|
.output_ip_hdr_valid(output_ip_hdr_valid),
|
|
.output_ip_hdr_ready(output_ip_hdr_ready),
|
|
.output_eth_dest_mac(output_eth_dest_mac),
|
|
.output_eth_src_mac(output_eth_src_mac),
|
|
.output_eth_type(output_eth_type),
|
|
.output_ip_version(output_ip_version),
|
|
.output_ip_ihl(output_ip_ihl),
|
|
.output_ip_dscp(output_ip_dscp),
|
|
.output_ip_ecn(output_ip_ecn),
|
|
.output_ip_length(output_ip_length),
|
|
.output_ip_identification(output_ip_identification),
|
|
.output_ip_flags(output_ip_flags),
|
|
.output_ip_fragment_offset(output_ip_fragment_offset),
|
|
.output_ip_ttl(output_ip_ttl),
|
|
.output_ip_protocol(output_ip_protocol),
|
|
.output_ip_header_checksum(output_ip_header_checksum),
|
|
.output_ip_source_ip(output_ip_source_ip),
|
|
.output_ip_dest_ip(output_ip_dest_ip),
|
|
.output_ip_payload_tdata(output_ip_payload_tdata),
|
|
.output_ip_payload_tvalid(output_ip_payload_tvalid),
|
|
.output_ip_payload_tready(output_ip_payload_tready),
|
|
.output_ip_payload_tlast(output_ip_payload_tlast),
|
|
.output_ip_payload_tuser(output_ip_payload_tuser),
|
|
// Control
|
|
.enable(enable),
|
|
.select(select)
|
|
);
|
|
|
|
endmodule
|