From 60b52bcaf25e85cac12a76fb40c52636db18fc94 Mon Sep 17 00:00:00 2001
From: Etienne Carriere <etienne.carriere@linaro.org>
Date: Tue, 29 May 2018 17:23:30 +0200
Subject: [PATCH] qemu_v8: ease SMP testing through QEMU_SMP

As for qemu.mk, environment can set the number of cores to be emulated
using QEMU_SMP. Defaults to 1 core.

Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
---
 qemu_v8.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/qemu_v8.mk b/qemu_v8.mk
index 6ae28e7..a705cfc 100644
--- a/qemu_v8.mk
+++ b/qemu_v8.mk
@@ -152,6 +152,8 @@ soc-term-clean:
 run: all
 	$(MAKE) run-only
 
+QEMU_SMP ?= 1
+
 .PHONY: run-only
 run-only:
 	$(call check-terminal)
@@ -163,6 +165,7 @@ run-only:
 	$(QEMU_PATH)/aarch64-softmmu/qemu-system-aarch64 \
 		-nographic \
 		-serial tcp:localhost:54320 -serial tcp:localhost:54321 \
+		-smp $(QEMU_SMP) \
 		-machine virt,secure=on -cpu cortex-a57 -m 1057 -bios $(ARM_TF_PATH)/build/qemu/release/bl1.bin \
 		-s -S -semihosting-config enable,target=native -d unimp \
 		-initrd $(ROOT)/out-br/images/rootfs.cpio.gz \
-- 
GitLab