ci(sme): add build and run configs for SME

TF-A Tests have SME tests but no config in the CI exercise them. This
patch adds an SME config.

Unlike the tests with SVE, SME is not tried with SPM, because SPMD
prohibits SME in Non-Secure world with it enabled.

The CI compiler does not support Armv8.7 so build for Armv8.6 and enable
the features required for 9.2 manually.

Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com>
Change-Id: If434448da87eda18d3d3995b6eedbe2dd201e98d
diff --git a/run_config/fvp-aemv8a.sme b/run_config/fvp-aemv8a.sme
new file mode 100644
index 0000000..f9cfcd9
--- /dev/null
+++ b/run_config/fvp-aemv8a.sme
@@ -0,0 +1,15 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2022, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+generate_lava_job() {
+	local model="base-aemv8a"
+
+	model="$model" \
+		sve_plugin="1" has_sme="1" arch_version="9.2" \
+		gen_model_params
+	model="$model" gen_fvp_yaml
+}