fvp: move a710 to 8 core test
With 11.26.11 FVP models a710 is a 8 core FVP, so move tests
to use 8 cores rather than 4 cores.
If we setup as 4 cores from FVP kernel still recognises as 8 core system.
[...]
rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[...]
This means kernel can schedule init.sh on any of the core ids.
But since we fail to bring up core4 to 7 and we schedule on any of
these cores will eventually lead to a hang with init.sh
not mounting the rootfs, if init.sh is run on core4 to 7.
Also in ci scripts we wait for shell prompt "#" for test to pass
which may not happen when init.sh fails.
Change-Id: Iadd87cbbe8bbb2d456496b9ce65e785f686b66af
Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>
diff --git a/run_config/fvp-cortexa710x8 b/run_config/fvp-cortexa710x8
new file mode 100644
index 0000000..7d111e2
--- /dev/null
+++ b/run_config/fvp-cortexa710x8
@@ -0,0 +1,15 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2021-2022, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+generate_lava_job() {
+ local model="cortex-a710"
+
+ uart="0" set_expect_variable "num_cpus" "8"
+
+ model="$model" cache_state_modelled="0" gen_model_params
+ model="$model" gen_fvp_yaml
+}