feat(notifications): forward notification info get to SPMC
The hypervisor forward FFA_NOTIFICATION_INFO_GET to the SPMC, to
retrieve the pending notifications info from SWd. It includes
notifications to SPs, and notifications from SPs to VMs.
Change-Id: I46549cc5ef7eb49addace546946222792d2be25b
Signed-off-by: J-Alves <joao.alves@arm.com>
diff --git a/src/arch/fake/hypervisor/ffa.c b/src/arch/fake/hypervisor/ffa.c
index 1f6b587..8736afa 100644
--- a/src/arch/fake/hypervisor/ffa.c
+++ b/src/arch/fake/hypervisor/ffa.c
@@ -244,3 +244,15 @@
return true;
}
+
+void plat_ffa_notification_info_get_forward( // NOLINTNEXTLINE
+ uint16_t *ids, uint32_t *ids_count, // NOLINTNEXTLINE
+ uint32_t *lists_sizes, uint32_t *lists_count,
+ const uint32_t ids_count_max)
+{
+ (void)ids;
+ (void)ids_count;
+ (void)lists_sizes;
+ (void)lists_count;
+ (void)ids_count_max;
+}