feat(fpmr): add support to enable fpmr in fvp

This patch enables support for FEAT_FPMR in the model.

Signed-off-by: Arvind Ram Prakash <arvind.ramprakash@arm.com>
Change-Id: Ic688f6f7005cee42d78ff57fe305ea9454ee35bd
diff --git a/model/base-aemva-common.sh b/model/base-aemva-common.sh
index 018e576..f9f2fa1 100644
--- a/model/base-aemva-common.sh
+++ b/model/base-aemva-common.sh
@@ -551,6 +551,14 @@
 EOF
 fi
 
+# FEAT_FPMR support
+if [ "$has_fpmr" = "1" ]; then
+	cat <<EOF >>"$model_param_file"
+-C cluster0.has_fpmr="1"
+-C cluster1.has_fpmr="1"
+EOF
+fi
+
 #------------ Cluster1 configuration (if exists) --------------
 if [ "$is_dual_cluster" = "1" ]; then
 	cat <<EOF >>"$model_param_file"
diff --git a/run_config/fvp-aemv8a.all b/run_config/fvp-aemv8a.all
index 4c763c8..c93b049 100644
--- a/run_config/fvp-aemv8a.all
+++ b/run_config/fvp-aemv8a.all
@@ -20,6 +20,7 @@
 		has_sme="1" has_sme2="1" \
 		has_mpam="1" \
 		has_ecv="1" \
+		has_fpmr="1" \
 		has_translation_hardening="1" \
 		has_d128="1" \
 		has_v8_9_debug_extension="1" \