Appendix c vhdl axi3 and axi4 test programs, Vhdl axi3 master bfm test program, Vhdl axi3 master bfm – Altera Mentor Verification IP Altera Edition AMBA AXI3/4TM User Manual

Page 751: Test program, See the

Advertising
background image

Mentor VIP AE AXI3/4 User Guide, V10.2b

731

September 2013

Appendix C

VHDL AXI3 and AXI4 Test Programs

This appendix contains AXI3 and AXI4 VHDL test programs, one for the Master BFM and the
other for the Slave BFM for each protocol.

VHDL AXI3 Master BFM Test Program

The following code example contains a simple AXI3 master test program that shows the master
BFM API being used to communicate with a slave and create stimulus. This test program is
discussed further in the

VHDL Tutorials

chapter.

*************************************************************************
--
-- Copyright 2007-2012 Mentor Graphics Corporation
-- All Rights Reserved.
--
-- THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS
-- THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS
-- SUBJECT TO LICENSE TERMS.
--
************************************************************************

-- This simplified example of an AXI master shows you how to use the
-- mgc_axi_master BFM.
--
-- This master performs a directed test, initiating 4 sequential writes,
-- followed by 4 sequential reads. It then verifies that the data read out
-- matches the data written. To retain simplicity, only one data cycle is
-- used (default AXI burst length encoding 0). It then initiates two write
-- data bursts, followed by two read data bursts.

library ieee;
use ieee.std_logic_1164.all;

library work;
use work.all;
use work.mgc_axi_bfm_pkg.all;

entity master_test_program is
generic (AXI_ADDRESS_WIDTH : integer := 32;
AXI_RDATA_WIDTH : integer := 1024;
AXI_WDATA_WIDTH : integer := 1024;
AXI_ID_WIDTH : integer := 4;
index : integer range 0 to 511 :=0
);
end master_test_program;

Advertising