summaryrefslogtreecommitdiffstats
path: root/sim-scripts/realview_pbx_a9_qemu_smp.in
diff options
context:
space:
mode:
Diffstat (limited to 'sim-scripts/realview_pbx_a9_qemu_smp.in')
-rw-r--r--sim-scripts/realview_pbx_a9_qemu_smp.in38
1 files changed, 38 insertions, 0 deletions
diff --git a/sim-scripts/realview_pbx_a9_qemu_smp.in b/sim-scripts/realview_pbx_a9_qemu_smp.in
new file mode 100644
index 0000000..0aecf68
--- /dev/null
+++ b/sim-scripts/realview_pbx_a9_qemu_smp.in
@@ -0,0 +1,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"