feat(trace-ext): Add trace extension test configurations

Added a test configurations to test:
1. Access to trace buffer control registers from TFTF
2. Access to trace filter control registers from TFTF
3. Access to trace system registers from TFTF

Change-Id: I76a64b43a0254553fd0e298786c55ea49c69f5d4
Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
diff --git a/run_config/fvp-aemva.aarch32.etm_trace_ext b/run_config/fvp-aemva.aarch32.etm_trace_ext
new file mode 100644
index 0000000..3c25591
--- /dev/null
+++ b/run_config/fvp-aemva.aarch32.etm_trace_ext
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2021 Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+post_fetch_tf_resource() {
+	local model="base-aemva"
+
+	aarch32="1" \
+	etm_present="1" \
+	etm_plugin="1" \
+	supports_trace_filter_regs="2" \
+	model="$model" gen_model_params
+
+	model="$model" gen_fvp_yaml
+}
diff --git a/run_config/fvp-aemva.ete_trace_ext b/run_config/fvp-aemva.ete_trace_ext
new file mode 100644
index 0000000..a910998
--- /dev/null
+++ b/run_config/fvp-aemva.ete_trace_ext
@@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2021 Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+post_fetch_tf_resource() {
+	local model="base-aemva"
+
+	model_version="0.0" \
+	model_build="6684" \
+	etm_present="1" \
+	ete_plugin="1" \
+	supports_trace_buffer_control_regs="1" \
+	supports_trace_filter_regs="2" \
+	model="$model" gen_model_params
+
+	model="$model" gen_fvp_yaml
+}
diff --git a/run_config/fvp-aemva.etm_trace_ext b/run_config/fvp-aemva.etm_trace_ext
new file mode 100644
index 0000000..64e03c5
--- /dev/null
+++ b/run_config/fvp-aemva.etm_trace_ext
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2021 Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+post_fetch_tf_resource() {
+	local model="base-aemva"
+
+	etm_present="1" \
+	etm_plugin="1" \
+	supports_trace_buffer_control_regs="1" \
+	supports_trace_filter_regs="2" \
+	model="$model" gen_model_params
+
+	model="$model" gen_fvp_yaml
+}