ci(detect_arch_feat): configure trbe and brbe support in fvp

This change adds the parameters to explicitly implement "FEAT_BRBE"
and "FEAT_TRBE", optional features listed under Arm Arch v9.0
in fvp.

Signed-off-by: Jayanth Dodderi Chidanand <jayanthdodderi.chidanand@arm.com>
Change-Id: If5267ea9e125ef07ab1c71728df849f67189fa01
diff --git a/model/base-aemva-common.sh b/model/base-aemva-common.sh
index 95b9261..de4df6a 100644
--- a/model/base-aemva-common.sh
+++ b/model/base-aemva-common.sh
@@ -300,6 +300,20 @@
 EOF
 fi
 
+# FEAT_BRBE is enabled
+if [ "$has_brbe" = "1" ]; then
+	cat <<EOF >>"$model_param_file"
+-C cluster0.has_brbe=1
+EOF
+fi
+
+# FEAT_TRBE is enabled
+if [ "$has_trbe" = "1" ]; then
+	cat <<EOF >>"$model_param_file"
+-C cluster0.has_trbe=1
+EOF
+fi
+
 #------------ Cluster1 configuration (if exists) --------------
 if [ "$is_dual_cluster" = "1" ]; then
 	cat <<EOF >>"$model_param_file"
@@ -401,6 +415,20 @@
 EOF
 fi
 
+# FEAT_BRBE is enabled
+if [ "$has_brbe" = "1" ]; then
+	cat <<EOF >>"$model_param_file"
+-C cluster1.has_brbe=1
+EOF
+fi
+
+# FEAT_TRBE is enabled
+if [ "$has_trbe" = "1" ]; then
+	cat <<EOF >>"$model_param_file"
+-C cluster1.has_trbe=1
+EOF
+fi
+
 # FEAT_RME is enabled
 if [ "$has_rme" = "1" ]; then
 	cat <<EOF >>"$model_param_file"