feat(ff-a): update FF-A version for sp_test_ffa.c tests

The version set during these test is the version the spmc sees
the secure partitions as for later tests. Therefore update these
versions to v1.2 to allow the memory sharing test to pass once
the endpoint memory access descriptor is updated in the next patch.

Signed-off-by: Daniel Boulby <daniel.boulby@arm.com>
Change-Id: I86357c8b4f6c2f2465eced184ed617b05e7fa4bf
diff --git a/spm/common/sp_tests/sp_test_ffa.c b/spm/common/sp_tests/sp_test_ffa.c
index 73db187..219b149 100644
--- a/spm/common/sp_tests/sp_test_ffa.c
+++ b/spm/common/sp_tests/sp_test_ffa.c
@@ -17,7 +17,7 @@
 
 /* FFA version test helpers */
 #define FFA_MAJOR 1U
-#define FFA_MINOR 1U
+#define FFA_MINOR 2U
 
 static uint32_t spm_version;
 
@@ -133,11 +133,11 @@
 	struct ffa_value ret = { 0 };
 
 	VERBOSE("FF-A Partition Info regs interface tests\n");
-	ret = ffa_version(MAKE_FFA_VERSION(1, 1));
+	ret = ffa_version(MAKE_FFA_VERSION(1, 2));
 	uint32_t version = ret.fid;
 
 	if (version == FFA_ERROR_NOT_SUPPORTED) {
-		ERROR("FFA_VERSION 1.1 not supported, skipping"
+		ERROR("FFA_VERSION 1.2 not supported, skipping"
 			" FFA_PARTITION_INFO_GET_REGS test.\n");
 		return;
 	}