aboutsummaryrefslogtreecommitdiff
path: root/spm
diff options
context:
space:
mode:
authorOlivier Deprez <olivier.deprez@arm.com>2020-10-23 09:12:27 +0200
committerOlivier Deprez <olivier.deprez@arm.com>2020-10-23 15:22:20 +0200
commit6d274a47ff0f43e601c2d7420b00e97830a63633 (patch)
treec0a613373c0edb363a33e4f99fe6e1107c41c8df /spm
parentf5e43807acae22ff47b8ec3b198620b18f6ee512 (diff)
downloadtf-a-tests-6d274a47ff0f43e601c2d7420b00e97830a63633.tar.gz
cactus: adjust partition info get properties
SPs support receipt of direct message requests and is reported as such in partition info get properties field. Signed-off-by: Olivier Deprez <olivier.deprez@arm.com> Change-Id: I643f374cc9fa702fa839987ff576067589af867a
Diffstat (limited to 'spm')
-rw-r--r--spm/cactus/cactus_ffa_tests.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/spm/cactus/cactus_ffa_tests.c b/spm/cactus/cactus_ffa_tests.c
index 81970f763..28555afd4 100644
--- a/spm/cactus/cactus_ffa_tests.c
+++ b/spm/cactus/cactus_ffa_tests.c
@@ -126,19 +126,20 @@ static void ffa_partition_info_get_test(struct mailbox_buffers *mb)
{
.id = SPM_VM_ID_FIRST,
.exec_context = CACTUS_PRIMARY_EC_COUNT,
- .properties = 0U
+ /* Supports receipt of direct message requests. */
+ .properties = 1U
},
/* Secondary partition info */
{
.id = SPM_VM_ID_FIRST + 1U,
.exec_context = CACTUS_SECONDARY_EC_COUNT,
- .properties = 0U
+ .properties = 1U
},
/* Tertiary partition info */
{
.id = SPM_VM_ID_FIRST + 2U,
.exec_context = CACTUS_TERTIARY_EC_COUNT,
- .properties = 0U
+ .properties = 1U
}
};