atspeed_vi 1.1 KB
#!/bin/sh 

if [ "$ROOT" = "" ];  then
    echo "Please specified the ROOT "
    exit
fi

cd ${ROOT}/PR/hw2/chip/vsim
rm -f verilog.dump
rm -f dump.v 
cp -f dump.v.padio dump.v

make clean
export SIMDEFS="+nospecify +define+TEST_VECTORS +define+FLASH_BIG +CM+ALL+LIBS"
make sim.cpu.ipc
cp ${ROOT}/PR/lib/bbboot/final/rom.hex final_rom

./sim.cpu.ipc +CM +sysclk=10400 +vclk=20800 +delay_mode_zero  +cbus_mon +cpu_mon +non_clk_mon +brom=final_rom $DUMPOPTS >log 2>&1 &

cd ${ROOT}/PR/cpusim/mi
export CPU_625=1
export NO_DDR_TEST=1
cvs update -r 1.2 atspeed_comp.c
make clean
make 
cvs update -A atspeed_comp.c

cd ${ROOT}/PR/iosim/src/jtag_test
export CPU_AT_5MHZ=1
export JTAG_CLK_FAST=1
rm test_vector
make clean
make test_vector

rm -rf vi_atspeed
mkdir vi_atspeed
cd vi_atspeed
grep "^filter.*rdram" ${ROOT}/PR/hw2/chip/test_vector/vi_pre | sed -e s/"^filter.*-x \(.*\)\.rdram"/"\1"/ > tests
${ROOT}/PR/hw2/chip/test_vector/vi_pre 
../test_vector -t VI -q -S 10208 -0 ${ROOT}/PR/cpusim/mi/atspeed_ddr.dat -1 ${ROOT}/PR/cpusim/mi/atspeed_comp.dat -2 tests
${ROOT}/PR/hw2/chip/test_vector/vi_post
cd ..
rm -rf vi_atspeed