summaryrefslogtreecommitdiffstats
path: root/sim-scripts/realview_pbx_a9_qemu_smp.in
blob: 0aecf68c8df17774f3d85836054b9f392f5cf1bd (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
38
#
#  arm/realview_pbx_a9_qemu_smp Qemu Support
#

bspUsesGDBSimulator="no"
bspSupportsSMP="yes"
# 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 -net none -nographic -M realview-pbx-a9 -m 256M -smp ${number_of_cores:-2} -icount 8 ${COVERAGE_ARG} -kernel ${1}"
}

checkBSPFaults()
{
  return 0
}

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

bspGeneratesDeviceTree="no"