axi: Add AXI interconnect 1S wrappers and testbench

Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
Alex Forencich
2025-12-23 17:49:55 -08:00
parent 900483d0cd
commit 2455b770fd
9 changed files with 774 additions and 0 deletions

View File

@@ -0,0 +1,105 @@
// SPDX-License-Identifier: CERN-OHL-S-2.0
/*
Copyright (c) 2018-2025 FPGA Ninja, LLC
Authors:
- Alex Forencich
*/
`resetall
`timescale 1ns / 1ps
`default_nettype none
/*
* AXI4 interconnect
*/
module taxi_axi_interconnect_1s_wr #
(
// Number of AXI outputs (master interfaces)
parameter M_COUNT = 4,
// Address width in bits for address decoding
parameter ADDR_W = 32,
// TODO fix parametrization once verilator issue 5890 is fixed
// Number of regions per master interface
parameter M_REGIONS = 1,
// Master interface base addresses
// M_COUNT concatenated fields of M_REGIONS concatenated fields of ADDR_W bits
// set to zero for default addressing based on M_ADDR_W
parameter M_BASE_ADDR = '0,
// Master interface address widths
// M_COUNT concatenated fields of M_REGIONS concatenated fields of 32 bits
parameter M_ADDR_W = {M_COUNT{{M_REGIONS{32'd24}}}},
// Secure master (fail operations based on awprot/arprot)
// M_COUNT bits
parameter M_SECURE = {M_COUNT{1'b0}}
)
(
input wire logic clk,
input wire logic rst,
/*
* AXI4 slave interface
*/
taxi_axi_if.wr_slv s_axi_wr,
/*
* AXI4 master interfaces
*/
taxi_axi_if.wr_mst m_axi_wr[M_COUNT]
);
taxi_axi_if #(
.DATA_W(s_axi_wr.DATA_W),
.ADDR_W(s_axi_wr.ADDR_W),
.STRB_W(s_axi_wr.STRB_W),
.ID_W(s_axi_wr.ID_W),
.AWUSER_EN(s_axi_wr.AWUSER_EN),
.AWUSER_W(s_axi_wr.AWUSER_W),
.WUSER_EN(s_axi_wr.WUSER_EN),
.WUSER_W(s_axi_wr.WUSER_W),
.BUSER_EN(s_axi_wr.BUSER_EN),
.BUSER_W(s_axi_wr.BUSER_W),
.ARUSER_EN(s_axi_wr.ARUSER_EN),
.ARUSER_W(s_axi_wr.ARUSER_W),
.RUSER_EN(s_axi_wr.RUSER_EN),
.RUSER_W(s_axi_wr.RUSER_W),
.MAX_BURST_LEN(s_axi_wr.MAX_BURST_LEN),
.NARROW_BURST_EN(s_axi_wr.NARROW_BURST_EN)
)
s_axi_wr_int[1]();
taxi_axi_tie_wr
tie_inst (
.s_axi_wr(s_axi_wr),
.m_axi_wr(s_axi_wr_int[0])
);
taxi_axi_interconnect_wr #(
.S_COUNT(1),
.M_COUNT(M_COUNT),
.ADDR_W(ADDR_W),
.M_REGIONS(M_REGIONS),
.M_BASE_ADDR(M_BASE_ADDR),
.M_ADDR_W(M_ADDR_W),
.M_SECURE(M_SECURE)
)
wr_inst (
.clk(clk),
.rst(rst),
/*
* AXI4 slave interface
*/
.s_axi_wr(s_axi_wr_int),
/*
* AXI4 master interfaces
*/
.m_axi_wr(m_axi_wr)
);
endmodule
`resetall