summaryrefslogtreecommitdiffstats
path: root/sim-scripts/xilinx_zynq_a9_qemu.in
blob: cdc776b7cc460654c6a8d8fa6fb3aaaaf46e3776 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
#  arm/xilix_zynq_a9_qemu Qemu Support
#

bspUsesGDBSimulator="no"
# bspGeneratesGDBCommands="yes"
# bspSupportsGDBServerMode="yes"
runBSP=NOT_OVERRIDDEN
if [ ! -r ${runBSP} ] ; then
  runBSP=qemu-system-arm
fi
bspNeedsDos2Unix="yes"

runARGS()
{
  if [ ${coverage} = yes ] ; then
    COVERAGE_ARG="-trace ${1}.cov"
  fi

  echo "-no-reboot -serial null -serial mon:stdio -net none -nographic -M xilinx-zynq-a9 -m 256M ${COVERAGE_ARG} -kernel ${1}"
}

checkBSPFaults()
{
  return 0
}

bspLimit()
{
  testname=$1
  case ${testname} in
    *)         limit=180 ;;
  esac
  echo ${limit}
}

bspGeneratesDeviceTree="no"