Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vcs-sim: Add scripts to run VCS sims #275

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
vcs-sim: Add scripts to run VCS sims, modify TBs to properly run in b…
…atch mode
  • Loading branch information
thommythomaso committed Dec 19, 2024
commit ed39f906845c10f3145bb4d7b9301c59e0a71809
31 changes: 27 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,37 +14,46 @@
ifneq (,$(wildcard /etc/iis.version))
VSIM ?= questa-2022.3 vsim
SYNOPSYS_DC ?= synopsys-2022.03 dcnxt_shell
VLOGAN ?= vcs-2020.12 vlogan
VCS ?= vcs-2020.12 vcs
else
VSIM ?= vsim
SYNOPSYS_DC ?= dc_shell
VLOGAN ?= vlogan
VCS ?= vcs
endif

TBS ?= axi_addr_test \
axi_atop_filter \
axi_cdc axi_delayer \
axi_bus_compare \
axi_cdc \
axi_delayer \
axi_dw_downsizer \
axi_dw_upsizer \
axi_fifo \
axi_isolate \
axi_iw_converter \
axi_lite_mailbox \
axi_lite_regs \
axi_lite_to_apb \
axi_lite_to_axi \
axi_lite_mailbox \
axi_lite_xbar \
axi_modify_address \
axi_serializer \
axi_sim_mem \
axi_slave_compare \
axi_to_axi_lite \
axi_to_mem_banked \
axi_xbar

SIM_TARGETS := $(addsuffix .log,$(addprefix sim-,$(TBS)))

SIM_TARGETS := $(addsuffix .log,$(addprefix sim-,$(TBS)))
SIMVCS_TARGETS := $(addsuffix .log,$(addprefix sim_vcs-,$(TBS)))


.SHELL: bash

.PHONY: help all sim_all clean
.PHONY: help all sim_all sim_vcs_all clean


help:
Expand All @@ -65,6 +74,9 @@ all: compile.log elab.log sim_all
sim_all: $(SIM_TARGETS)


sim_vcs_all: $(SIMVCS_TARGETS)


build:
mkdir -p $@

Expand All @@ -85,6 +97,17 @@ sim-%.log: compile.log
(! grep -n "Fatal:" $@)


compile_vcs.log: Bender.yml | build
export VLOGAN="$(VLOGAN)"; cd build && ../scripts/compile_vcs.sh | tee ../$@
(! grep -n "Error-" $@)


sim_vcs-%.log: compile_vcs.log
export VCS="$(VCS)"; cd build && ../scripts/run_vcs.sh --random-seed $* | tee ../$@
(! grep -n "Error" $@)
(! grep -n "Fatal" $@)


clean:
rm -rf build
rm -f *.log
30 changes: 30 additions & 0 deletions scripts/compile_vcs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#!/bin/bash
# Copyright (c) 2022 ETH Zurich, University of Bologna
#
# Copyright and related rights are licensed under the Solderpad Hardware
# License, Version 0.51 (the "License"); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
# http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law
# or agreed to in writing, software, hardware and materials distributed under
# this License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.
#
# Authors:
# - Thomas Benz <[email protected]>

set -e

[ ! -z "$VLOGAN" ] || VLOGAN=vlogan

bender script vcs -t test -t rtl -t simulation \
--vlog-arg="-full64" \
--vlog-arg="-nc" \
--vlog-arg="-q" \
--vlog-arg="-assert svaext" \
--vlog-arg="-timescale=1ns/1ps" \
--vlogan-bin="$VLOGAN" \
| grep -v "ROOT=" | sed '3 i ROOT="../"' \
> compile_vcs.sh

source compile_vcs.sh
278 changes: 278 additions & 0 deletions scripts/run_vcs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,278 @@
#!/bin/bash
# Copyright (c) 2022 ETH Zurich, University of Bologna
#
# Copyright and related rights are licensed under the Solderpad Hardware
# License, Version 0.51 (the "License"); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
# http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law
# or agreed to in writing, software, hardware and materials distributed under
# this License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.
#
# Authors:
# - Thomas Benz <[email protected]>

set -euo pipefail
ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)

# Seed values for `sv_seed`; can be extended with specific values on a per-TB basis, as well as with
# a random number by passing the `--random` flag. The default value, 0, is always included to stay
# regression-consistent.
SEEDS=(0)

call_vcs() {
$VCS -Mlib=work-"${@: -1}" -Mdir=work-"${@: -1}" -debug_access+r -CFLAGS "-Os" -full64 -xprop=xmerge "$@"
for seed in ${SEEDS[@]}; do
echo
echo "----"
echo "Running with seed: $seed"
./"${@: -1}" +ntb_random_seed=$seed -exitstatus | tee "${@: -1}"_$seed.log 2>&1
(! grep -n "Error" "${@: -1}"_$seed.log)
(! grep -n "Fatal" "${@: -1}"_$seed.log)
done
# cleanup
echo
echo "----"
echo "Cleanup"
rm -rf work-"${@: -1}"
rm -rf "${@: -1}".daidir
rm -f "${@: -1}"
echo "Done"
echo "----"
echo
echo
}

exec_test() {
if [ ! -e "$ROOT/test/tb_$1.sv" ]; then
echo "Testbench for '$1' not found!"
exit 1
fi
case "$1" in
axi_atop_filter)
for MAX_TXNS in 1 3 12; do
call_vcs tb_axi_atop_filter \
-pvalue+TB_N_TXNS=1000 \
-pvalue+TB_AXI_MAX_WRITE_TXNS=$MAX_TXNS \
-o tb_axi_atop_filter_${MAX_TXNS}.vcs
done
;;
axi_cdc)
call_vcs tb_axi_cdc -o tb_axi_cdc.vcs
;;
axi_delayer)
call_vcs tb_axi_delayer -o tb_axi_delayer.vcs
;;
axi_dw_downsizer)
for AxiSlvPortDataWidth in 8 16 32 64 128 256 512 1024; do
for (( AxiMstPortDataWidth = 8; \
AxiMstPortDataWidth < $AxiSlvPortDataWidth; \
AxiMstPortDataWidth *= 2 )); \
do
call_vcs tb_axi_dw_downsizer \
-pvalue+TbAxiSlvPortDataWidth=$AxiSlvPortDataWidth \
-pvalue+TbAxiMstPortDataWidth=$AxiMstPortDataWidth \
-o tb_axi_dw_downsizer_${AxiSlvPortDataWidth}_${AxiMstPortDataWidth}.vcs
done
done
;;
axi_dw_upsizer)
for AxiSlvPortDataWidth in 8 16 32 64 128 256 512 1024; do
for (( AxiMstPortDataWidth = $AxiSlvPortDataWidth*2; \
AxiMstPortDataWidth <= 1024; \
AxiMstPortDataWidth *= 2 )); \
do
call_vcs tb_axi_dw_upsizer \
-pvalue+TbAxiSlvPortDataWidth=$AxiSlvPortDataWidth \
-pvalue+TbAxiMstPortDataWidth=$AxiMstPortDataWidth \
-o tb_axi_dw_upsizer_${AxiSlvPortDataWidth}_${AxiMstPortDataWidth}.vcs
done
done
;;
axi_fifo)
for DEPTH in 0 1 16; do
for FALL_THROUGH in 0 1; do
call_vcs tb_axi_fifo \
-pvalue+Depth=$DEPTH \
-pvalue+FallThrough=$FALL_THROUGH \
-o tb_axi_fifo_${DEPTH}_${FALL_THROUGH}.vcs
done
done
;;
axi_iw_converter)
for SLV_PORT_IW in 1 2 3 4 8; do
MAX_SLV_PORT_IDS=$((2**SLV_PORT_IW))
MAX_UNIQ_SLV_PORT_IDS_OPTS=(1 2)
EXCL_OPTS=(0)
if [ $SLV_PORT_IW -eq 3 ]; then
# Save time by not testing exclusive accesses for every parametrization.
EXCL_OPTS+=(1)
fi
for EXCL in "${EXCL_OPTS[@]}"; do
if [ $MAX_SLV_PORT_IDS -gt 2 ]; then
MAX_UNIQ_SLV_PORT_IDS_OPTS+=(3 4)
fi
if [ $(($MAX_SLV_PORT_IDS/2)) -ge 4 ]; then
MAX_UNIQ_SLV_PORT_IDS_OPTS+=($((MAX_SLV_PORT_IDS/2-1)))
fi
MAX_UNIQ_SLV_PORT_IDS_OPTS+=($MAX_SLV_PORT_IDS)
for MST_PORT_IW in 1 2 3 4; do
if [ $MST_PORT_IW -lt $SLV_PORT_IW ]; then # downsize
for MAX_UNIQ_SLV_PORT_IDS in "${MAX_UNIQ_SLV_PORT_IDS_OPTS[@]}"; do
MAX_MST_PORT_IDS=$((2**MST_PORT_IW))
if [ $MAX_UNIQ_SLV_PORT_IDS -le $MAX_MST_PORT_IDS ]; then
call_vcs tb_axi_iw_converter \
-pvalue+TbEnExcl=$EXCL \
-pvalue+TbAxiSlvPortIdWidth=$SLV_PORT_IW \
-pvalue+TbAxiMstPortIdWidth=$MST_PORT_IW \
-pvalue+TbAxiSlvPortMaxUniqIds=$MAX_UNIQ_SLV_PORT_IDS \
-pvalue+TbAxiSlvPortMaxTxnsPerId=5 \
-o tb_axi_iw_converter_${EXCL}_${SLV_PORT_IW}_${MST_PORT_IW}_${MAX_UNIQ_SLV_PORT_IDS}.vcs
else
call_vcs tb_axi_iw_converter \
-pvalue+TbEnExcl=$EXCL \
-pvalue+TbAxiSlvPortIdWidth=$SLV_PORT_IW \
-pvalue+TbAxiMstPortIdWidth=$MST_PORT_IW \
-pvalue+TbAxiSlvPortMaxUniqIds=$MAX_UNIQ_SLV_PORT_IDS \
-pvalue+TbAxiSlvPortMaxTxns=31 \
-pvalue+TbAxiMstPortMaxUniqIds=$((2**MST_PORT_IW)) \
-pvalue+TbAxiMstPortMaxTxnsPerId=7 \
-o tb_axi_iw_converter_${EXCL}_${SLV_PORT_IW}_${MST_PORT_IW}_${MAX_UNIQ_SLV_PORT_IDS}_$((2**MST_PORT_IW)).vcs
fi
done
else
call_vcs tb_axi_iw_converter \
-pvalue+TbEnExcl=$EXCL \
-pvalue+TbAxiSlvPortIdWidth=$SLV_PORT_IW \
-pvalue+TbAxiMstPortIdWidth=$MST_PORT_IW \
-pvalue+TbAxiSlvPortMaxTxnsPerId=3 \
-o tb_axi_iw_converter_${EXCL}_${SLV_PORT_IW}_${MST_PORT_IW}.vcs
fi
done
done
done
;;
axi_lite_regs)
for PRIV in 0 1; do
for SECU in 0 1; do
for BYTES in 42 369; do
call_vcs tb_axi_lite_regs \
-pvalue+TbPrivProtOnly=$PRIV \
-pvalue+TbSecuProtOnly=$SECU \
-pvalue+TbRegNumBytes=$BYTES \
-o tb_axi_lite_regs_${PRIV}_${SECU}_${BYTES}.vcs
done
done
done
;;
axi_lite_to_apb)
for PIPE_REQ in 0 1; do
for PIPE_RESP in 0 1; do
call_vcs tb_axi_lite_to_apb \
-pvalue+TbPipelineRequest=$PIPE_REQ \
-pvalue+TbPipelineResponse=$PIPE_RESP \
-o tb_axi_lite_to_apb_${PIPE_REQ}_${PIPE_RESP}.vcs
done
done
;;
axi_lite_to_axi)
for DW in 8 16 32 64 128 256 512 1024; do
call_vcs tb_axi_lite_to_axi \
-pvalue+TB_DW=$DW \
-o tb_axi_lite_to_axi_${DW}.vcs
done
;;
axi_sim_mem)
for AW in 16 32 64; do
for DW in 32 64 128 256 512 1024; do
call_vcs tb_axi_sim_mem \
-pvalue+TbAddrWidth=$AW \
-pvalue+TbDataWidth=$DW \
-o tb_axi_sim_mem_${AW}_${DW}.vcs
done
done
;;
axi_xbar)
for NumMst in 1 6; do
for NumSlv in 1 8; do
for Atop in 0 1; do
for Exclusive in 0 1; do
for UniqueIds in 0 1; do
for DataWidth in 64 256; do
for Pipe in 0 1; do
call_vcs tb_axi_xbar \
-pvalue+TbNumMasters=$NumMst \
-pvalue+TbNumSlaves=$NumSlv \
-pvalue+TbEnAtop=$Atop \
-pvalue+TbEnExcl=$Exclusive \
-pvalue+TbUniqueIds=$UniqueIds \
-pvalue+TbAxiDataWidth=$DataWidth \
-pvalue+TbPipeline=$Pipe \
-o tb_axi_xbar_${NumMst}_${NumSlv}_${Atop}_${Exclusive}_${UniqueIds}_${DataWidth}_${Pipe}.vcs
done
done
done
done
done
done
done
;;
axi_to_mem_banked)
for MEM_LAT in 1 2; do
for BANK_FACTOR in 1 2; do
for NUM_BANKS in 1 2 ; do
for AXI_DATA_WIDTH in 64 256 ; do
ACT_BANKS=$((2*$BANK_FACTOR*$NUM_BANKS))
MEM_DATA_WIDTH=$(($AXI_DATA_WIDTH/$NUM_BANKS))
call_vcs tb_axi_to_mem_banked \
-pvalue+TbAxiDataWidth=$AXI_DATA_WIDTH \
-pvalue+TbNumWords=2048 \
-pvalue+TbNumBanks=$ACT_BANKS \
-pvalue+TbMemDataWidth=$MEM_DATA_WIDTH \
-pvalue+TbMemLatency=$MEM_LAT \
-pvalue+TbNumWrites=2000 \
-pvalue+TbNumReads=2000 \
-o tb_axi_to_mem_banked_${AXI_DATA_WIDTH}_${ACT_BANKS}_${MEM_DATA_WIDTH}_${MEM_LAT}.vcs
done
done
done
done
;;
*)
call_vcs tb_$1 -o tb_${1}.vcs
;;
esac
}

# Parse flags.
PARAMS=""
while (( "$#" )); do
case "$1" in
--random-seed)
SEEDS+=($RANDOM)
shift;;
-*--*) # unsupported flag
echo "Error: Unsupported flag '$1'." >&2
exit 1;;
*) # preserve positional arguments
PARAMS="$PARAMS $1"
shift;;
esac
done
eval set -- "$PARAMS"

if [ "$#" -eq 0 ]; then
tests=()
while IFS= read -r -d $'\0'; do
tb_name="$(basename -s .sv $REPLY)"
dut_name="${tb_name#tb_}"
tests+=("$dut_name")
done < <(find "$ROOT/test" -name 'tb_*.sv' -a \( ! -name '*_pkg.sv' \) -print0)
else
tests=("$@")
fi

for t in "${tests[@]}"; do
exec_test $t
done
Loading