7. Simulating the AFU Example
Intel recommends you refer to the Intel Accelerator Functional Unit (AFU) Simulation Environment (ASE) Quick Start Guide for your Intel® FPGA PAC to be familiar with simulating similar examples and to setup your environment. Before you proceed through the following steps, verify that the OPAE_PLATFORM_ROOT environment variable is set to the OPAE SDK installation directory.
Complete the following steps to setup the hardware simulator for the DMA AFU:
Sample output from the hardware simulator:
[SIM] ** ATTENTION : BEFORE running the software application ** [SIM] Set env(ASE_WORKDIR) in terminal where application will run (copy-and-paste) => [SIM] $SHELL | Run: [SIM] ---------+--------------------------------------------------- [SIM] bash/zsh | export ASE_WORKDIR=$OPAE_PLATFORM_ROOT/hw/samples/dma_afu/ase_mkdir/work [SIM] tcsh/csh | setenv ASE_WORKDIR $OPAE_PLATFORM_ROOT/hw/samples/dma_afu/ase_mkdir/work [SIM] For any other $SHELL, consult your Linux administrator [SIM] [SIM] Ready for simulation... [SIM] Press CTRL-C to close simulator...
Complete the following steps to compile and execute the DMA AFU software in the simulation environment:
- Open a new terminal window.
- Change directory to:
cd $OPAE_PLATFORM_ROOT/hw/samples/dma_afu/sw
- Copy the environment setup string (choose string appropriate for your shell) from the steps above in the hardware simulation to the terminal window. See the following lines in the sample output from the hardware simulator.
[SIM] bash/zsh | export ASE_WORKDIR=$OPAE_PLATFORM_ROOT/hw/samples/dma_afu/build_ase_dir/work [SIM] tcsh/csh | setenv ASE_WORKDIR $OPAE_PLATFORM_ROOT/hw/samples/dma_afu/build_ase_dir/work
- Compile the software:
$ make USE_ASE=1
- Execute the host application to write 4 KB in 1 KB portions from the host memory back to FPGA device memory in the loopback mode:
./fpga_dma_test -s 4096 -p 1024 -r mtom