axi: Add MAX_BURST_LEN and NARROW_BURST_EN parameters to AXI interface

Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
Alex Forencich
2025-08-30 13:55:33 -07:00
parent e43d6acbbd
commit 5f6487964e

View File

@@ -36,7 +36,11 @@ interface taxi_axi_if #(
// Use ruser signal // Use ruser signal
parameter logic RUSER_EN = 1'b0, parameter logic RUSER_EN = 1'b0,
// Width of ruser signal // Width of ruser signal
parameter RUSER_W = 1 parameter RUSER_W = 1,
// Maximum AXI burst length supported
parameter MAX_BURST_LEN = 256,
// Narrow bursts are supported
parameter logic NARROW_BURST_EN = 1'b1
) )
(); ();
// AW // AW